diff --git a/templates/articles_list_page.html b/templates/articles_list_page.html
new file mode 100644
index 0000000..7af9ca8
--- /dev/null
+++ b/templates/articles_list_page.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+
+ {% block header %}{% endblock %}
+
+
+ {% include 'include/paginated_posts.html' %}
+
+
+{% endblock content %}
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index b916f61..75fdb82 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -3,6 +3,9 @@
{% block head %}
-
- Some TEXT TO GET CLICKS
+
+ Electrical safety is a nebulous thing, but we define it as the set of systems designed to lower the risks associated with the electrical hazards of shock, arc flash and arc blast, to an acceptable level. In our day-to-day life this is handled for us
+
+
+
-
- Some TEXT TO GET CLICKS
-
-
-
-
- Some TEXT TO GET CLICKS
+
+ An electricity supply network that uses digital communications technology to detect and react to local changes in usage. – Oxford English Dictionary Smart Grid is a concept describing the evolution of the power system. Among the desired future power.
+
+
+
+
+
+
diff --git a/templates/include/paginated_posts.html b/templates/include/paginated_posts.html
new file mode 100644
index 0000000..949ba87
--- /dev/null
+++ b/templates/include/paginated_posts.html
@@ -0,0 +1,36 @@
+
+ {% for article in articles_page.object_list %}
+
+
+
+ {% if article.photo_image %}
+
+ {% endif %}
+ {% if (article.category != MICROBLOG ) %}
+ {{ article.summary }}
+ {% if INCLUDECATEGORY == True %}
+ {% if article.category %}
+
+ {% endif %}
+ {% endif %}
+ {% if MOREBUTTON == True %}
+
+
+
+ {% endif %}
+
+ {% endif %}
+
+ {% endfor %}
+
+
+
+