Stupiod blog engine
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add very basic styling to the example site

+13
+2
example/content/index.md
··· 1 1 Hello World! 2 + 3 + Let's add some more content, shall we!
+8
example/static/index.css
··· 1 1 html { 2 2 color: white; 3 3 background-color: black; 4 + font-family: "Iosevka Nerd Font Mono", monospace; 5 + font-size: 20pt; 6 + } 7 + 8 + body { 9 + max-width: 80ch; 10 + margin: 0 auto; 11 + padding: 1rem; 4 12 }
+3
example/templates/index.html
··· 1 1 <html lang="en"> 2 + <head> 3 + <link rel="stylesheet" href="static/index.css"> 4 + </head> 2 5 <body> 3 6 {{ body }} 4 7 </body>