Compare commits
No commits in common. "f85e031debb3be3f1ae6f5e48da23222fdaf5dfd" and "2acf7eab6ba06b056d6dcf002a4d6c036bb010f4" have entirely different histories.
f85e031deb
...
2acf7eab6b
21
.drone.yml
21
.drone.yml
|
@ -1,21 +0,0 @@
|
||||||
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
|
|
|
@ -1,8 +1,10 @@
|
||||||
+++
|
+++
|
||||||
title = "Hello, World"
|
title = "hello world"
|
||||||
date = 2023-08-16
|
date = 2023-08-16
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
# Hello, World
|
||||||
|
|
||||||
This is a test of the new announcement feed system.
|
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.
|
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.
|
||||||
|
@ -13,4 +15,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.
|
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.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.
|
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.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<link rel="stylesheet" href="/base.css" />
|
<link rel="stylesheet" href="/base.css" />
|
||||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed/rss.xml">
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml">
|
||||||
<title>{% block title %}{{ config.title }}{% endblock %}</title>
|
<title>{% block title %}{{ config.title }}{% endblock %}</title>
|
||||||
|
|
||||||
{% block links %}{% endblock %}
|
{% block links %}{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue