diff --git a/static/css/base.css b/static/css/base.css
index 76e2575..7d55ae4 100644
--- a/static/css/base.css
+++ b/static/css/base.css
@@ -58,13 +58,19 @@ nav a:hover {
 div.container {
     margin: auto;
     width: 80%;
+    min-height: calc(100vh - 9.2em);
+}
+
+strong {
+    font-family: monospace;
+    font-size: 10px;
 }
 
 footer {
     bottom: 0;
-    position: fixed;
     display: grid;
     width: 100%;
+    margin-top: auto;
     background-color: #444444;
     color: #f0f0f0;
     font-family: monospace;
diff --git a/static/css/index.css b/static/css/index.css
index 42d7482..2f80c90 100644
--- a/static/css/index.css
+++ b/static/css/index.css
@@ -45,14 +45,14 @@ article figure img {
     grid-area: info;
 }
 
-strong {
-    font-family: monospace;
-    font-size: 10px;
-}
-
 div.pagination {
     margin-top: 50px;
     width: auto;
     height: 3em;
     text-align: center;
 }
+
+div.pagination a {
+    color: black;
+    text-decoration: none;
+}
diff --git a/templates/index.html.tera b/templates/index.html.tera
index 83e92ef..faabf14 100644
--- a/templates/index.html.tera
+++ b/templates/index.html.tera
@@ -26,7 +26,7 @@
     <strong>Pages:</strong>
     [
     {% for n in range(start=1, end=total_pages+1) %}
-            <a {% if actual_page != n %} href="?page={{ n }}"{% endif %}>página {{ n }}</a>{% if total_pages != n %}, {% endif %}
+            <a {% if actual_page != n %}href="?page={{ n }}"{% endif %}>página {{ n }}</a>{% if total_pages != n %}, {% endif %}
     {% endfor %}
     ]
     </div>
diff --git a/templates/posts.html.tera b/templates/posts.html.tera
new file mode 100644
index 0000000..0e1d742
--- /dev/null
+++ b/templates/posts.html.tera
@@ -0,0 +1,11 @@
+{% extends "base" %}
+{% block title %}{% endblock title %}
+
+{% block content %}
+<h1><strong>Title: </strong>{{ post.title }}</h1>
+<strong>Content:</strong>
+<article>
+  {{ post.content | split(pat="\n") | join(sep="----------") }}
+</article>
+
+{% endblock content %}