diff --git a/templates/blog-list.html b/templates/blog-list.html
new file mode 100644
index 0000000..7c77133
--- /dev/null
+++ b/templates/blog-list.html
@@ -0,0 +1,32 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+
+ {% for article in articles %}
+ {% if article.category == 'blog' %}
+
+
+
{{ article.locale_date }}
+ {% if article.tags %}
+
+ Tags:
+
+ {% for tag in article.tags %}
+ - {{ tag }}
+ {% endfor %}
+
+ {% endif %}
+
+ {{ article.summary }}
+
+
Continue reading »
+
+ {% endif %}
+ {% endfor %}
+
+{% endblock %}
diff --git a/templates/index.html b/templates/index.html
index d481af8..4cdd70e 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,7 +1,15 @@
{% extends "base.html" %}
{% block content %}
-
Hi!
-
Thanks for visiting my website! I hope you find something interesting or useful here
+
+
+ Hi! My name is Lucas. I am a software engineer and most recently I ive been working at a startup called Rokt,
+ where I work on K8s infrastructure, developing scalable go microservices, and improving the developer
+ experience.
+
+
+ I made this website to document and share some of the coding and 3d printing projects I’ve worked on.
+ Thanks for visiting!
+
{% endblock %}
\ No newline at end of file
diff --git a/templates/model-list.html b/templates/model-list.html
index 31a95ee..c59ec1b 100644
--- a/templates/model-list.html
+++ b/templates/model-list.html
@@ -2,10 +2,13 @@
{% block content %}
- PROJECT LIST HERE
+
{% for article in articles %}
{% if article.category == 'models' %}
+ {{ article.image }}
diff --git a/templates/projects-list.html b/templates/projects-list.html
index ab581f6..1883efd 100644
--- a/templates/projects-list.html
+++ b/templates/projects-list.html
@@ -2,7 +2,9 @@
{% block content %}
- PROJECT LIST HERE
+
{% for article in articles %}
{% if article.category == 'projects' %}