Compare commits

...

3 Commits

Author SHA1 Message Date
kayomn f85e031deb Add drone CI
continuous-integration/drone/push Build is failing Details
2023-08-19 19:25:29 +01:00
kayomn ff989598fb Correct initial feed post RSS link 2023-08-19 17:25:44 +01:00
kayomn 77d25600a4 Fix RSS link in base template 2023-08-19 17:13:10 +01:00
3 changed files with 24 additions and 5 deletions

21
.drone.yml Normal file
View File

@ -0,0 +1,21 @@
kind: pipeline
name: default
steps:
- name: build
image: ghcr.io/getzola/zola:v0.17.2
entrypoint: ["/bin/zola"]
command: ["build"]
- name: deploy
image: drillster/drone-rsync
settings:
hosts: ["pizzawednes.day"]
user: site
source: public/*
target: /var/site/
recursive: true
delete: true
environment:
RSYNC_KEY:
from_secret: rsync_key

View File

@ -1,10 +1,8 @@
+++
title = "hello world"
title = "Hello, World"
date = 2023-08-16
+++
# Hello, World
This is a test of the new announcement feed system.
From here on, all announcements regarding all things Source Control will come through here. That includes notices of maintenance, downtime, as well as more general updates about the service.
@ -15,4 +13,4 @@ Aside from the heavy reliance on a third-party and that being against the a key
Our new solution uses RSS and allows us to distribute information without having to worry about so many third-parties being involved. With it being a core web technology and standard, it's been tested by time and has a higher level of reliability than Discord or any highly dynamic internet-based service for that matter.
Aside from visiting the website directly to view updates, you can also subscribe to our RSS feed at [https://pizzawednes.day/feed.rss](https://pizzawednes.day/feed.rss) and receive notifications to any device you wish to that supports RSS content. Further, we will continue pushing announcement to Discord - now through an RSS relay bot.
Aside from visiting the website directly to view updates, you can also subscribe to our RSS feed at [https://pizzawednes.day/feed/rss.xml](https://pizzawednes.day/feed/rss.xml) and receive notifications to any device you wish to that supports RSS content. Further, we will continue pushing announcement to Discord - now through an RSS relay bot.

View File

@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/base.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml">
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed/rss.xml">
<title>{% block title %}{{ config.title }}{% endblock %}</title>
{% block links %}{% endblock %}