New blog post
This commit is contained in:
parent
18153a4fac
commit
c1b03745ec
7
_includes/image.html
Normal file
7
_includes/image.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<figure>
|
||||
<a href="{{ include.url }}">
|
||||
<img src="{{ include.file }}" style="max-width: {{ include.max-width }};"
|
||||
alt="{{ include.alt }}"/>
|
||||
</a>
|
||||
<figcaption>{{ include.caption }}</figcaption>
|
||||
</figure>
|
|
@ -4,12 +4,12 @@ layout: default
|
|||
<!-- This loops through the paginated posts -->
|
||||
<div class="post">
|
||||
{% for post in paginator.posts %}
|
||||
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
||||
<h1><a href="{{ post.url }}" class="post-title">{{ post.title }}</a></h1>
|
||||
<p class="author">
|
||||
<span class="date">{{ post.date }}</span>
|
||||
</p>
|
||||
<div class="content">
|
||||
{{ post.content }}
|
||||
{{ post.excerpt }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
26
_posts/2021-05-10-gitnub.md
Normal file
26
_posts/2021-05-10-gitnub.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
layout: post
|
||||
title: "Announcing GitNub"
|
||||
author: "Luna"
|
||||
---
|
||||
|
||||
Hello again! I'm here with a ✨special✨ announcement.
|
||||
|
||||
Some of you may have already seen a few sneak peeks of it from our [Matrix room], but today, the rest of you will finally see it!
|
||||
|
||||
## Introducing GitNub
|
||||
|
||||
GitNub is, to put it simply, a clone of 2009 GitHub with a few modern twists.
|
||||
|
||||
The origin of GitNub was a sleep-deprived Luna, access to the Wayback Machine, and a whole lot of Diet Coke. Fun.
|
||||
|
||||
<!-- include screenshot -->
|
||||
{% include image.html url="/uploads/screenshot.png"
|
||||
max-width="95%" file="/uploads/screenshot.png" alt="GitNub screenshot"
|
||||
caption="A screenshot of an early version of GitNub" %}
|
||||
|
||||
The source code is on [GitHub](https://github.com/go-gitnub/gitnub) and [mint.lgbt's Gitea](https://fem.mint.lgbt/mint.lgbt/gitnub), although development takes place on GitHub only for the time being.
|
||||
|
||||
Thanks for reading!
|
||||
|
||||
[Matrix room]: https://matrix.to/#/#hi:mint.lgbt
|
|
@ -81,6 +81,7 @@ a {
|
|||
.post {
|
||||
padding-left: 25%;
|
||||
padding-right: 25%;
|
||||
padding-bottom: 10%;
|
||||
}
|
||||
.utterances {
|
||||
padding-top: 10px;
|
||||
|
@ -95,4 +96,7 @@ a {
|
|||
}
|
||||
.next {
|
||||
color: silver;
|
||||
}
|
||||
.post a {
|
||||
color: #777;
|
||||
}
|
BIN
uploads/screenshot.png
Normal file
BIN
uploads/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 492 KiB |
Loading…
Reference in a new issue