Browse Source
* Home now renders from content instead of all in-template * Titles are parsed from HTML :D * Updated stylesheet to have better fonts and scale better (e.g. add margin) * Any content path with '_hidden' is ignored * Added link to home page to all Blog Posts * XSRF tokens are randomized for eventual securitymaster

6 changed files with 77 additions and 37 deletions
@ -0,0 +1,2 @@ |
|||
* Simple Org Blog |
|||
The owner has not set up their ~Home_hidden.org~ file. |
@ -1,9 +1,17 @@ |
|||
<html> |
|||
<head> |
|||
<title>{{ title }}</title> |
|||
<link rel="stylesheet" type="text/css" href="/webResources/styles.css"> |
|||
</head> |
|||
<body> |
|||
{% raw postBody %} |
|||
</body> |
|||
</html> |
|||
<head> |
|||
<title>{{ title }}</title> |
|||
<link rel="stylesheet" type="text/css" href="/webResources/styles.css"> |
|||
</head> |
|||
<body> |
|||
<article> |
|||
{% raw postBody %} |
|||
</article> |
|||
|
|||
<br /> |
|||
<nav> |
|||
<a href="/">Back to Home</a> |
|||
</nav> |
|||
<br /> |
|||
</body> |
|||
</html> |
|||
|
Loading…
Reference in new issue