commit ae926fbcee0416462b4ec4836272e13b593a2bb6
parent 2c464b52746848ecfe9c55e52c21fa386d0e7756
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Mon, 26 Feb 2024 19:55:52 +0100
feat: intro, nav and content
Diffstat:
4 files changed, 29 insertions(+), 18 deletions(-)
diff --git a/_includes/intro.html b/_includes/intro.html
@@ -1,5 +1,12 @@
 <section class="intro">
   <div class="container">
-    <p class="lead">Hi, I'm John Doe. I do stuffs with computer and sometimes write about it here. I'm from Penang, MY and I ship code at <a href="#">Microsoft</a>.</p>
+    <img class="mascot" src="{{ '/assets/images/hive.png' | relative_url }}" alt="hivedav-mascot"/>
+    <p class="lead">
+      A curlable free/busy scheduler with CalDAV integration.
+    </p>
+    <p>
+      <script src="https://liberapay.com/in0rdr/widgets/button.js"></script>
+      <noscript><a href="https://liberapay.com/in0rdr/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></noscript>
+    </p>
   </div>
 </section>
diff --git a/_includes/nav.html b/_includes/nav.html
@@ -3,8 +3,9 @@
   <div class="container">
     <h1 class="logo"><a href="{{ '/' | relative_url }}">{{ site.title_left }}<span>{{ site.title_right }}</span></a></h1>
     <ul class="navbar">
-      <li><a href="{{ '/about' | prepend: site.baseurl | prepend: site.url }}">About me</a></li>
-      <li><a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" target="_blank">RSS</a></li>
+      <li><a href="https://code.in0rdr.ch/hivedav">{% octicon repo %}<span> src</span></a></li>
+      <li><a href="https://web.libera.chat/gamja/#p0c">{% octicon comment-discussion %}<span> irc</span></a></li>
+      <li><a href="https://cv.in0rdr.ch">{% octicon person %}<span> about</span></a></li>
     </ul>
   </div>
 </nav>
diff --git a/assets/images/hive.png b/assets/images/hive.png
Binary files differ.
diff --git a/index.html b/index.html
@@ -7,21 +7,24 @@ title: Home
 
 <section class="post-list">
   <div class="container">
-    {% for post in site.posts %}
-      {% unless post.next %}
-        <h2 class="category-title">{{ post.date | date: '%Y' }}</h2>
-      {% else %}
-        {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
-        {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
-        {% if year != nyear %}
-          <h2 class="category-title">{{ post.date | date: '%Y' }}</h2>
-        {% endif %}
-      {% endunless %}
-      <article class="post-item">
-        <span class="post-meta date-label">{{ post.date | date: "%b %d" }}</span>
-        <div class="article-title"><a class="post-link" href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a></div>
-      </article>
-    {% endfor %}
+    <header class="page-header">
+      <h1 class="page-title">Demo</h1>
+    </header>
+    <div class="page-content">
+	    <p>A development instance and reference scheduler is hosted on 🗓️ <a href="https://meet.in0rdr.ch">https://meet.in0rdr.ch</a>, try <code>curl meet.in0rdr.ch</code> 🤖.</p>
+      <p>
+        Interested in the development of the application? Drop me a line on IRC
+        <a href="https://web.libera.chat/gamja/#p0c">#p0c</a> or on <a href="https://m.in0rdr.ch/@in0rdr">Mastodon</a>.
+      </p>
+    </div>
+    <header class="page-header">
+      <h1 class="page-title">Documentation and Self-Hosting</h1>
+    </header>
+    <div class="page-content">
+      <p>
+        Clone the code and read the docs (<a href="https://code.in0rdr.ch/hivedav/file/README.md.html">README.md</a>) to host your own instance.
+      </p>
+    </div>
   </div>
 
 </section>