blob: bc820f57a7c9bb24aa8e8e7be90677371aad644e (
plain)
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
|
{% extends "base.html" %} {% block title %} sakamoto.network {% endblock title
%} {% block content %}
<!-- <h1>sakamoto.network</h1> -->
<h1>Services</h1>
<ul>
<li><a href="https://git.sakamoto.network">cgit</a></li>
<li><a href="https://file.sakamoto.network">copyparty</a></li>
<li><a href="https://ntfy.sakamoto.network">ntfy</a></li>
<li><a href="https://rss.sakamoto.network">miniflux</a></li>
<li><a href="https://music.sakamoto.network">gonic</a></li>
<li><a href="https://paste.sakamoto.network">rustypaste</a></li>
</ul>
{% set blog = get_section(path="blog/_index.md") %} {% if blog.pages %}
<h2>Recent posts</h2>
<ul>
{% for post in blog.pages | slice(end=5) %}
<li>
<a href="{{ post.permalink | safe }}">{{ post.title }}</a>
<time class="right" datetime="{{ post.date }}"
>{{ post.date | date(format="%b %d, %Y") }}</time
>
</li>
{% endfor %}
</ul>
{% endif %} {% endblock content %}
|