summaryrefslogtreecommitdiff
path: root/src/index.njk
diff options
context:
space:
mode:
authorShipwreckt <me@shipwreckt.co.uk>2025-10-31 20:02:14 +0000
committerShipwreckt <me@shipwreckt.co.uk>2025-10-31 20:02:14 +0000
commit7a52ddeba2a68388b544f529d2d92104420f77b0 (patch)
tree15ddd47457a2cb4a96060747437d36474e4f6b4e /src/index.njk
parent53d6ae2b5568437afa5e4995580a3fb679b7b91b (diff)
Changed from static to 11ty!
Diffstat (limited to 'src/index.njk')
-rw-r--r--src/index.njk37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/index.njk b/src/index.njk
new file mode 100644
index 0000000..bab1684
--- /dev/null
+++ b/src/index.njk
@@ -0,0 +1,37 @@
+---
+layout: layout
+title: Shipwreckt
+---
+<h1>About me</h1>
+<p>Welcome to my website! I am Shipwreckt, I am a 16 year old from the Uk and I have a great passion for all things computer relating be that software, hardware, programming and more! I mostly focus on learning and working with the GNU/Linux operating system.</p>
+
+
+
+<p>list of <a href="churches">Churchs</a> I have been to</a>
+<hr>
+
+<h2>Tags</h2>
+<p class="tag-list-inline">
+ {% set tagCount = 0 %}
+ {% for tagName, items in collections %}
+ {% if tagName not in ["all", "post", "posts", "tools" , "safe" , "dark" , "media-tutorials" , "arch-linux" , "information-about-linux" , "the-linux-server" , "tagList"] %}
+ {% if tagCount > 0 %}, {% endif %}
+ <a href="/tags/{{ tagName | lower | replace(' ', '-') }}/">
+ {{ tagName }}
+ </a>
+ {% set tagCount = tagCount + 1 %}
+ {% endif %}
+ {% endfor %}
+</p>
+<hr>
+<h1>Posts</h1>
+<ul>
+ {% for post in collections.posts %}
+ <li>
+ <span class="post-date">{{ post.date | dateFormat("dd-MM-yyyy") }}</span>
+ — <a href="{{ post.url }}">{{ post.data.title }}</a>
+ </li>
+ {% endfor %}
+</ul>
+<hr>
+