From 795c3d339b402873ef7ca84a792be53b3c11ea28 Mon Sep 17 00:00:00 2001
From: Nekojimi <Jim@nekojimi.moe>
Date: Thu, 27 Mar 2025 20:00:33 +0000
Subject: [PATCH] Add links and page listing to index.

---
 pages/index.html | 34 +++++++++++++++++++++++++++++-----
 1 file changed, 29 insertions(+), 5 deletions(-)

diff --git a/pages/index.html b/pages/index.html
index b283d12..defd40b 100644
--- a/pages/index.html
+++ b/pages/index.html
@@ -1,8 +1,9 @@
 ---
 title: "Nekojimi's Webpage!!"
 permalink: "/"
-layout: "default"
+layout: "main"
 ---
+
 <div class="section">
   <div class="intro-box">
     <img src="static/catboy.png" class="catboy-img">
@@ -23,23 +24,46 @@ layout: "default"
     </div>
   </div>
 </div>
+
+
+<div class="section">
+  <h1>Links</h1>
+  <!-- 🐘🔨🦋📨🐙 -->
+  <a href="https://mastodon.nekojimi.moe/@Nekojimi">[ 🐘 Mastodon ]</a>
+  <a href="https://t.me/Nekojimi">[ 🛫 Telegram ]</a>
+  <a href="https://fluff.nekojimi.moe/forgejo/">[ 🔨 Forgejo ]</a>
+  <a href="https://bsky.app/profile/nekojimi.moe">[ 🦋 Bluesky ]</a>
+  <a href="https://github.com/jimj316">[ 🐙 Github ]</a>
+</div>
+
+
 <div class="section">
 <h1>Projects</h1>
-
 {% for project in site.projects %}
-<div class="project-entry">
+<!--  -->
+<div class="project-entry {% if project.nsfw %} nsfw {% endif %}" >
   <div class="project-txt">
     <a href="{{ project.url }}"><h2>{{ project.name }}</h2></a>
-    <p>{{ project.summary }}</p>
+    {% if project.summary %}
+      <p>{{ project.summary }}</p>
+    {% else %}
+      <p>{{ project.excerpt }}</p>
+    {% endif %}
   </div>
   <img class="project-img" src="/static/project-img/{{project.img_url}}"></img>
 </div>
 {% endfor %}
 
 </div>
+
+
 <div class="section">
 <h1>Things</h1>
-
+{% for page in site.pages %}
+<div class="page-entry">
+  <a href="{{ page.url }}"><h2>{{ page.title }}</h2></a>
+</div>
+{% endfor %}
 </div>