diff --git a/cl-theme/templates/categories.html b/cl-theme/templates/categories.html
new file mode 100644
index 0000000..88071f9
--- /dev/null
+++ b/cl-theme/templates/categories.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block head %}
+ {% block title %}
+
{{ SITENAME }}
+ {% endblock %}
+ {{ super() }}
+{% endblock %}
+
+{% block content %}
+
+{% for category, articles in categories %}
+ - {{ category }}
+{% endfor %}
+
+{% endblock %}
diff --git a/cl-theme/templates/category.html b/cl-theme/templates/category.html
new file mode 100644
index 0000000..02b5595
--- /dev/null
+++ b/cl-theme/templates/category.html
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+
+{% block head %}
+
+ {% block title %}
+ {{ category.name }} - {{SITENAME}}
+ {% endblock %}
+ {{ super() }}
+
+{% endblock %}
+
+{% block content %}
+
+ {{ super() }}
+{% endblock %}
diff --git a/cl-theme/templates/tag.html b/cl-theme/templates/tag.html
new file mode 100644
index 0000000..9ddf6b5
--- /dev/null
+++ b/cl-theme/templates/tag.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block head %}
+ {% block title %}#{{ tag.name }} - {{SITENAME}}{% endblock title %}
+ {{ super() }}
+
+
+{% endblock %}
+{% block content %}
+
+ {{ super() }}
+{% endblock %}
diff --git a/cl-theme/templates/tags.html b/cl-theme/templates/tags.html
new file mode 100644
index 0000000..320c5d7
--- /dev/null
+++ b/cl-theme/templates/tags.html
@@ -0,0 +1,51 @@
+{% extends "base.html" %}
+
+{% block head %}
+ {% block title %}
+ {{ _('Lista de etiquetas de %(sitename)s', sitename=SITENAME)}}
+ {% endblock %}
+ {{ super() }}
+
+
+
+{% endblock %}
+
+{% block content %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {%- for tag, articles in tags|sort %}
+ - {{ tag }} ({{ articles|count }})
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}