Compare commits
3 Commits
2acf7eab6b
...
f85e031deb
Author | SHA1 | Date |
---|---|---|
kayomn | f85e031deb | |
kayomn | ff989598fb | |
kayomn | 77d25600a4 |
|
@ -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
|
|
@ -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.
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue