diff --git a/.gitignore b/.gitignore
index 68fc4fc..b8938c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,4 +13,7 @@ vendor/
*.temp
*.tmp
*.vscode
-*.idea
\ No newline at end of file
+*.idea
+
+# Other
+.trunk/
diff --git a/_includes/image-gallery.html b/_includes/image-gallery.html
new file mode 100644
index 0000000..cb7f95f
--- /dev/null
+++ b/_includes/image-gallery.html
@@ -0,0 +1,17 @@
+
+
+ {% assign sorted = site.static_files | sort: 'date' | reverse %}
+ {% for file in sorted %}
+ {% if file.path contains include.folder %}
+ {% if file.extname == '.png' %}
+ {% assign filenameparts = file.path | split: "/" %}
+ {% assign filename = filenameparts | last | replace: file.extname,"" %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/_includes/news-img.html b/_includes/news-img.html
new file mode 100644
index 0000000..291f68c
--- /dev/null
+++ b/_includes/news-img.html
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/_layouts/post.html b/_layouts/post.html
index 0bf9465..91d62b4 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -10,7 +10,11 @@
@@ -23,4 +27,4 @@ {{ page.title }}
{% include footer.html %}