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.
20 lines
311 B
Smarty
20 lines
311 B
Smarty
1 year ago
|
<!doctype html>
|
||
|
|
||
|
<html>
|
||
|
|
||
|
% include('head.tpl', title = article['title'])
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class = 'container'>
|
||
|
|
||
|
<h1>Delete {{article['title']}}?</h1>
|
||
|
<hr>
|
||
|
<a href = '/edit/{{article['title']}}'>-yes-</a> • <a href = '/edit/{{article['title']}}'>-no-</a>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|