diff options
author | Vitaly Takmazov | 2016-08-30 14:38:28 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-08-30 14:38:28 +0300 |
commit | e6962670c778966b49620d6166581986fa54cf34 (patch) | |
tree | ec7518d34bc8910ad915ffad8da09266e9452b39 /juick-www/src/main/resources/layouts | |
parent | 3e4ed1552076018f88cc2bb47cb99b7eec607286 (diff) |
fix templates
Diffstat (limited to 'juick-www/src/main/resources/layouts')
-rw-r--r-- | juick-www/src/main/resources/layouts/content.html | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/juick-www/src/main/resources/layouts/content.html b/juick-www/src/main/resources/layouts/content.html index 4cc1e2bf..ef12382c 100644 --- a/juick-www/src/main/resources/layouts/content.html +++ b/juick-www/src/main/resources/layouts/content.html @@ -1,22 +1,19 @@ <!DOCTYPE html> <html> -<head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <head> + <meta charset="utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <script type="text/javascript" src="/scripts.js"></script> - <link rel="stylesheet" type="text/css" href="/style.css"/> + <link rel="stylesheet" type="text/css" href="/style.css" /> {% block headers %} {{ headers | raw }} {% endblock %} <title>{{ title }}</title> - <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/> - <link rel="icon" href="//i.juick.com/favicon.png"/> - <!--[if lt IE 9 & (!IEMobile 7)]> - <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> - <![endif]--> -</head> -<body> -{% include "views/partial/navigation.html" %} + <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" /> + <link rel="icon" href="//i.juick.com/favicon.png" /> + </head> + <body> + {% include "views/partial/navigation.html" %} <section id="content"> {% block content %} {% endblock %} @@ -25,5 +22,6 @@ {% block column %} {% endblock %} </aside> -</body> + {% include "views/partial/footer.html" %} + </body> </html>
\ No newline at end of file |