@@ -35,9 +34,7 @@ layout: default
{%- if page.social %}
-
-
{% include social.html %}
diff --git a/_layouts/page.html b/_layouts/page.html
index 9e34f40..7d07076 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -1,7 +1,7 @@
---
layout: default
---
-
+
diff --git a/_layouts/post.html b/_layouts/post.html
index cd95734..7210157 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,13 +1,11 @@
---
layout: default
---
-
{%- assign year = page.date | date: "%Y" -%}
{%- assign tags = page.tags | join: "" -%}
{%- assign categories = page.categories | join: "" -%}
{% if page._styles %}
-
diff --git a/_pages/projects.md b/_pages/projects.md
index 648a3fe..c0c2a0b 100644
--- a/_pages/projects.md
+++ b/_pages/projects.md
@@ -8,15 +8,12 @@ display_categories: [university, personal]
horizontal: false
---
-
{%- if site.enable_project_categories and page.display_categories %}
-
{%- for category in page.display_categories %}
{{ category }}
{%- assign categorized_projects = site.projects | where: "category", category -%}
{%- assign sorted_projects = categorized_projects | sort: "importance" %}
-
{% if page.horizontal -%}
@@ -35,9 +32,7 @@ horizontal: false
{% endfor %}
{%- else -%}
-
{%- assign sorted_projects = site.projects | sort: "importance" -%}
-
{% if page.horizontal -%}
diff --git a/_projects/BottlerOS.md b/_projects/BottlerOS.md
new file mode 100644
index 0000000..72443a8
--- /dev/null
+++ b/_projects/BottlerOS.md
@@ -0,0 +1,60 @@
+---
+layout: page
+title: BottlerOS
+description: Basic operative system.
+img:
+importance: 1
+github: https://github.com/slococo/BottlerOS
+category: university
+---
+
+# BottlerOS
+
+BottlerOS es un sistema operativo.
+
+## Tabla de contenidos
+* [Requisitos](#requisitos)
+* [Compilación](#compilación)
+* [Ejecución](#ejecución)
+* [Testeos](#tests)
+
+## Requisitos
+
+Debe instalar nasm, qemu, gcc, make. Estos se encuentran disponibles en el repositorio de la vasta mayoría de distribuciones de Linux/macOS.
+
+Debian/Ubuntu: `apt install nasm qemu gcc make`\
+macOS (con [homebrew](https://brew.sh/)): `brew install nasm qemu gcc make`
+
+Si tiene otra distribución consulte cómo hacerlo.
+
+## Compilación
+
+Para compilar todos los archivos se debe ejecutar el script `build.sh` (desde la carpeta raíz del proyecto). Note que usted podrá pasarle como argumento `buddy` si desea compilar con este memory manager (por defecto no compilará con este). Además, si quiere probar el OS con el teclado en español lo podrá hacer pasandole como argumento `spanish`. Por último, el parámetro `free` liberará la memoria (que haya sido obtenida mediante `malloc`) al terminar o hacer `kill` de un proceso.
+
+```bash
+./build.sh
+```
+
+Este script hará un `make` en la carpeta de `Toolchain` y luego un `make` en la carpeta `root` del proyecto. Luego, dependiendo del parámetro ingresado hará: `make all`, `make spanish`, `make buddy` o `make free`.
+
+## Ejecución
+
+Ahora, usted podrá ejecutar BottlerOS haciendo:
+
+```bash
+./run.sh
+```
+
+Si, en su defecto, usted quiere correr el OS desde windows lo podrá hacer con:
+
+```bash
+./run.bat
+```
+
+## Testeos
+
+En orden de realizar un análisis estático del sistema usted debe tener instalado [cppcheck](http://cppcheck.net/) y [pvs-studio](https://pvs-studio.com/). Luego, puede correrlos con:
+
+```bash
+make test
+```
\ No newline at end of file
diff --git a/_projects/u1_project.md b/_projects/u1_project.md
deleted file mode 100644
index 977a9d1..0000000
--- a/_projects/u1_project.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-layout: page
-title: BottlerOS
-description: Basic operative system.
-img:
-importance: 1
-github: https://github.com/slococo/BottlerOS
-category: university
----
-
{% include social.html %}
diff --git a/_layouts/page.html b/_layouts/page.html
index 9e34f40..7d07076 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -1,7 +1,7 @@
---
layout: default
---
-
+
diff --git a/_layouts/post.html b/_layouts/post.html
index cd95734..7210157 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,13 +1,11 @@
---
layout: default
---
-
{%- assign year = page.date | date: "%Y" -%}
{%- assign tags = page.tags | join: "" -%}
{%- assign categories = page.categories | join: "" -%}
{% if page._styles %}
-
diff --git a/_pages/projects.md b/_pages/projects.md
index 648a3fe..c0c2a0b 100644
--- a/_pages/projects.md
+++ b/_pages/projects.md
@@ -8,15 +8,12 @@ display_categories: [university, personal]
horizontal: false
---
-
{%- if site.enable_project_categories and page.display_categories %}
-
{%- for category in page.display_categories %}
{{ category }}
{%- assign categorized_projects = site.projects | where: "category", category -%} {%- assign sorted_projects = categorized_projects | sort: "importance" %} - {% if page.horizontal -%}
@@ -35,9 +32,7 @@ horizontal: false
{% endfor %}
{%- else -%}
-
{%- assign sorted_projects = site.projects | sort: "importance" -%}
-
{% if page.horizontal -%}
diff --git a/_projects/BottlerOS.md b/_projects/BottlerOS.md
new file mode 100644
index 0000000..72443a8
--- /dev/null
+++ b/_projects/BottlerOS.md
@@ -0,0 +1,60 @@
+---
+layout: page
+title: BottlerOS
+description: Basic operative system.
+img:
+importance: 1
+github: https://github.com/slococo/BottlerOS
+category: university
+---
+
+# BottlerOS
+
+BottlerOS es un sistema operativo.
+
+## Tabla de contenidos
+* [Requisitos](#requisitos)
+* [Compilación](#compilación)
+* [Ejecución](#ejecución)
+* [Testeos](#tests)
+
+## Requisitos
+
+Debe instalar nasm, qemu, gcc, make. Estos se encuentran disponibles en el repositorio de la vasta mayoría de distribuciones de Linux/macOS.
+
+Debian/Ubuntu: `apt install nasm qemu gcc make`\
+macOS (con [homebrew](https://brew.sh/)): `brew install nasm qemu gcc make`
+
+Si tiene otra distribución consulte cómo hacerlo.
+
+## Compilación
+
+Para compilar todos los archivos se debe ejecutar el script `build.sh` (desde la carpeta raíz del proyecto). Note que usted podrá pasarle como argumento `buddy` si desea compilar con este memory manager (por defecto no compilará con este). Además, si quiere probar el OS con el teclado en español lo podrá hacer pasandole como argumento `spanish`. Por último, el parámetro `free` liberará la memoria (que haya sido obtenida mediante `malloc`) al terminar o hacer `kill` de un proceso.
+
+```bash
+./build.sh
+```
+
+Este script hará un `make` en la carpeta de `Toolchain` y luego un `make` en la carpeta `root` del proyecto. Luego, dependiendo del parámetro ingresado hará: `make all`, `make spanish`, `make buddy` o `make free`.
+
+## Ejecución
+
+Ahora, usted podrá ejecutar BottlerOS haciendo:
+
+```bash
+./run.sh
+```
+
+Si, en su defecto, usted quiere correr el OS desde windows lo podrá hacer con:
+
+```bash
+./run.bat
+```
+
+## Testeos
+
+En orden de realizar un análisis estático del sistema usted debe tener instalado [cppcheck](http://cppcheck.net/) y [pvs-studio](https://pvs-studio.com/). Luego, puede correrlos con:
+
+```bash
+make test
+```
\ No newline at end of file
diff --git a/_projects/u1_project.md b/_projects/u1_project.md
deleted file mode 100644
index 977a9d1..0000000
--- a/_projects/u1_project.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-layout: page
-title: BottlerOS
-description: Basic operative system.
-img:
-importance: 1
-github: https://github.com/slococo/BottlerOS
-category: university
----
-