diff --git a/_includes/image.html b/_includes/image.html new file mode 100644 index 0000000..e980fd2 --- /dev/null +++ b/_includes/image.html @@ -0,0 +1,7 @@ +
+ + {{ include.alt }} + +
{{ include.caption }}
+
\ No newline at end of file diff --git a/_layouts/pagination.html b/_layouts/pagination.html index f8a2e40..f122be6 100644 --- a/_layouts/pagination.html +++ b/_layouts/pagination.html @@ -4,12 +4,12 @@ layout: default
{% for post in paginator.posts %} -

{{ post.title }}

+

{{ post.title }}

{{ post.date }}

- {{ post.content }} + {{ post.excerpt }}
{% endfor %}
diff --git a/_posts/2021-05-10-gitnub.md b/_posts/2021-05-10-gitnub.md new file mode 100644 index 0000000..43642bf --- /dev/null +++ b/_posts/2021-05-10-gitnub.md @@ -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 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 diff --git a/assets/css/home.css b/assets/css/home.css index 2bf77f4..36073da 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -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; } \ No newline at end of file diff --git a/uploads/screenshot.png b/uploads/screenshot.png new file mode 100644 index 0000000..10a9237 Binary files /dev/null and b/uploads/screenshot.png differ