forked from leftypol/leftypol
transition to Twig
This commit is contained in:
parent
e077166030
commit
1b136555d2
145 changed files with 11031 additions and 320 deletions
|
@ -1,20 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
||||
{config[url_favicon]?<link rel="shortcut icon" href="{config[url_favicon]}" />}
|
||||
<title>{title}</title>
|
||||
<link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}" />
|
||||
{% if config.url_favicon %}<link rel="shortcut icon" href="{{ config.url_favicon }}" />{% endif %}
|
||||
<title>{{ title }}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
||||
<link rel="stylesheet" type="text/css" id="stylesheet" href="{config[uri_stylesheets]}{config[default_stylesheet][1]}">
|
||||
<script type="text/javascript" src="{config[url_javascript]}"></script>
|
||||
<link rel="stylesheet" type="text/css" id="stylesheet" href="{{ config.uri_stylesheets }}{{ config.default_stylesheet.1 }}" />
|
||||
<script type="text/javascript" src="{{ config.url_javascript }}"></script>
|
||||
</head>
|
||||
<body>
|
||||
{pm?<div class="top_notice">{pm}</div><hr/>}
|
||||
<h1>{title}</h1>
|
||||
<div class="title">{subtitle?{subtitle}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>
|
||||
{body}
|
||||
<hr/>
|
||||
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> v0.9.3 | <a href="http://tinyboard.org/">Tinyboard</a> Copyright © 2010-2011 Tinyboard Development Group</p>
|
||||
{% if pm %}<div class="top_notice">{{ pm }}</div><hr />{% endif %}
|
||||
<h1>{{ title }}</h1>
|
||||
<div class="title">{% if subtitle %}{{subtitle}}{% endif %}<p>{% if mod %}<a href="?/">Return to dashboard</a>{% endif %}</p></div>
|
||||
{{ body }}
|
||||
<hr />
|
||||
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> v0.9.4 | <a href="http://tinyboard.org/">Tinyboard</a> Copyright © 2010-2011 Tinyboard Development Group</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue