You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
585 B
Smarty
32 lines
585 B
Smarty
1 year ago
|
<!doctype html>
|
||
|
|
||
|
<html>
|
||
|
|
||
|
% include('head.tpl', title = article['title'])
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class = 'container'>
|
||
|
|
||
|
<div class = 'row'>
|
||
|
<h1>{{article['title']}}</h1>
|
||
|
<div class = 'edit'>
|
||
|
<a href=https://www.blessfrey.me/>-return to blessfrey-</a> • <a href=https://wiki.blessfrey.me/view/Main_Page>-return to wiki main page-</a>
|
||
|
</div>
|
||
|
<hr>
|
||
|
</div>
|
||
|
|
||
|
<div class = 'row'>
|
||
|
<div class = 'col'>
|
||
|
<div class = 'content'>
|
||
|
{{!article['content']}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|