-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (59 loc) · 2.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
layout: default
title: /
metasub: news
noToc: true
tags:
- xw3
- project
- cgi
- static
- jekyll
description: The xw3 CGI research project
noComments: true
---
<div class="post">
<header class="post-header">
<h1 class="post-title" id="terminal">{{ site.title }}:{{ page.title }}<a href="./">./</a></h1>
<p style="padding: 0px 0px 0px 0px;">{{ site.subtitle }}</p>
</header>
</div>
<h2><a href="/about/" title="About">About</a></h2>
<div>
<p>{{ site.description }}</p>
<p>Just an idea... not more! A dynamic website like in the 90's, with some little JavaScript sugar. No rocket science... ;)</p>
</div>
<p style="text-align:right;"><a href="/about/">[More about]</a></p>
<h2><a href="/blog/" title="Blog posts">Blog posts</a></h2>
{% for post in site.tags.pinned limit:1 %}
<article class="post-content">
<h3><a href="{{ post.url }}" title="{{ post.title }}">{{ post.url }}</a> <span style="cursor:help; float: right;" title="Pinned Post!">📌</span></h3>
<p class="post-meta">{{ post.date | date: "%b %-d, %Y %H:%M:%S" }}
{% if post.date_updated %} - Edited: {{ post.date_updated | date: "%b %-d, %Y %H:%M:%S" }}{% endif %} ({{ post.date | date: "%Z" }}){% if post.author %}, <a href="{{ site.git_short }}/{{ post.author }}" target="_blank" class="user">{{ post.author }}</a>{% endif %}</p>
{{ post.content }}
<ul style="list-style:none;margin-left:0px;text-align:right;">
<li style="display:inline;"><a href="/blog/" style="text-decoration:none;" title="/blog/">[All posts]</a></li>
<li style="display:inline;"><a href="{{ post.url }}" style="text-decoration:none;" title="{{ post.url }}">[Read post]</a></li>
</ul>
</article>
{% endfor %}
{% for post in site.posts limit:1 %}
{% unless post.tags contains 'pinned' %}
<article class="post-content">
<h3><a href="{{ post.url }}" title="{{ post.title }}">{{ post.url }}</a></h3>
<p class="post-meta">{{ post.date | date: "%b %-d, %Y %H:%M:%S" }}
{% if post.date_updated %} - Edited: {{ post.date_updated | date: "%b %-d, %Y %H:%M:%S" }}{% endif %} ({{ post.date | date: "%Z" }}){% if post.author %}, <a href="{{ site.git_short }}/{{ post.author }}" target="_blank" class="user">{{ post.author }}</a>{% endif %}</p>
{{ post.content }}
<ul style="list-style:none;margin-left:0px;text-align:right;">
<li style="display:inline;"><a href="/blog/" style="text-decoration:none;" title="/blog/">[All posts]</a></li>
<li style="display:inline;"><a href="{{ post.url }}" style="text-decoration:none;" title="{{ post.url }}">[Read post]</a></li>
</ul>
</article>
{% endunless %}
{% endfor %}
<!--<p style="text-align:right;"><a href="/blog/">[All blog posts]</a></p>-->
{% if page.noComments != true %}
<h2>Comments</h2>
<section id="isso-thread"><noscript>Javascript needs to be activated to view comments.</noscript></section>
<script data-isso="/comments" src="/comments/js/embed.min.js"></script>
{% endif %}