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
491 B
Smarty
32 lines
491 B
Smarty
<!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 = '/edit/{{article['title']}}'>-edit-</a>
|
|
</div>
|
|
<hr>
|
|
</div>
|
|
|
|
<div class = 'row'>
|
|
<div class = 'col'>
|
|
<div class = 'content'>
|
|
{{!article['content']}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|