This repository has been archived on 2023-09-18. You can view files and clone it, but cannot push or open issues or pull requests.
blogtopoid/blogtopoid/example/index.html

28 lines
721 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ config.blogurl }}style/style.css">
<link rel="alternate" type="application/rss+xml" title="{{ config.blogtitle }} Feed" href="{{ config.blogurl }}feed.rss" />
{{ add_style }}
</head>
<body>
<div id="header">
<a href="{{config.blogurl}}"><h1>{{ config.blogtitle }}</h1></a>
<h2>{{ config.blogdescription }}</h2>
<p>
<a href="{{ config.blogurl }}">index</a>
{% for page in pages %}
<a href="{{page.link}}">{{page.title}}</a>
{% endfor %}
</p>
</div>
<div id="post">
{{ body|replace("{{blogurl}}", config.blogurl) }}
</div>
</body>
</html>