An RFC system for the tildeverse
Go to file
southerntofu 0d5b5cd42f Squash zola rewrite
Rewrote as a Zola static site

Do not commit session files, dammit!

Add anchor links

Fix anchor links

Reintroduce og: tags and some of ben's style

Import fork-awesome locally, make navbar without javascript

ben's patch (internal links)

Homepage is a dedicated Markdown file, and titles are fixed

Code highlighting in markdown is enabledx

Clarify submission process for RFCs

restore placeholder for RFC drafts

more relative urls

page.html does not fail when some variables are missing

Enable RSS! (only content with a date set appears in RSS feeds)

Add RSS link in HTML, fix quotes

Add drafts

Number of RFC entries can be limited in macro, introduced latest rfcs/drafts on homepage

bootstrap grid for latest content on homepage

latest entries is only on homepage

Drafts are not listed on homepage, empty drafts section is not rendered elsewhere

RFCs now have a table of contents (ToC)

base_url for personal site
2020-04-17 20:16:43 -04:00
content Squash zola rewrite 2020-04-17 20:16:43 -04:00
static Squash zola rewrite 2020-04-17 20:16:43 -04:00
templates Squash zola rewrite 2020-04-17 20:16:43 -04:00
.gitignore Squash zola rewrite 2020-04-17 20:16:43 -04:00
README.md Squash zola rewrite 2020-04-17 20:16:43 -04:00
config.toml Squash zola rewrite 2020-04-17 20:16:43 -04:00

README.md

rfcs

Similar to khuxkm's previous attempt, this project will bring an RFC-style proposals system to the the tildeverse.

However, unlike that attempt, this system will use YAML front-matter.

See RFC 0 for more info.

WARNING: On this experimental branch, that's not the case anymore. Frontmatter uses TOML formatting.

nginx configs

location ~* ^/rfcs/(.+)$ {
	try_files $uri $uri/ /rfcs/index.php?$1;
	include snippets/php.conf;
}