diff options
author | Vitaly Takmazov | 2021-03-31 00:21:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-03-31 00:21:12 +0300 |
commit | b034b3ede4844c6873fef9b2f031d698bc8b0327 (patch) | |
tree | 580975a80d4cd13aae04f9d8aa858674b71bcc0e /src/main/resources/templates/layouts/default.html | |
parent | 03bf67156f0ecfcaf11c76484251bd57422cb897 (diff) |
Gradle -> Maven
Diffstat (limited to 'src/main/resources/templates/layouts/default.html')
-rw-r--r-- | src/main/resources/templates/layouts/default.html | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/main/resources/templates/layouts/default.html b/src/main/resources/templates/layouts/default.html deleted file mode 100644 index d3ce7dce..00000000 --- a/src/main/resources/templates/layouts/default.html +++ /dev/null @@ -1,54 +0,0 @@ -<!DOCTYPE html> -<html prefix="og: http://ogp.me/ns#"> - -<head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <script type="text/javascript" src="{{ beans.webApp.scriptsUrl }}"></script> - <link rel="stylesheet" type="text/css" href="{{ beans.webApp.styleUrl }}" /> - {% block headers %} - {{ headers | default('') | raw }} - {% endblock %} - <title>{{ title | default('Juick') }}</title> - <meta property="og:type" content="{{ ogtype | default('website') }}" /> - <meta property="fb:app_id" content="130568668304" /> - <meta name="viewport" content="width=device-width,initial-scale=1" /> - <meta name="msapplication-config" content="//i.juick.com/browserconfig.xml" /> - <meta name="msapplication-TileColor" content="#ffffff" /> - <meta name="msapplication-TileImage" content="//i.juick.com/ms-icon-144x144.png" /> - <meta name="theme-color" content="#ffffff" /> - <meta name="apple-mobile-web-app-capable" content="yes" /> - <link rel="apple-touch-icon" sizes="57x57" href="//i.juick.com/apple-icon-57x57.png" /> - <link rel="apple-touch-icon" sizes="60x60" href="//i.juick.com/apple-icon-60x60.png" /> - <link rel="apple-touch-icon" sizes="72x72" href="//i.juick.com/apple-icon-72x72.png" /> - <link rel="apple-touch-icon" sizes="76x76" href="//i.juick.com/apple-icon-76x76.png" /> - <link rel="apple-touch-icon" sizes="114x114" href="//i.juick.com/apple-icon-114x114.png" /> - <link rel="apple-touch-icon" sizes="120x120" href="//i.juick.com/apple-icon-120x120.png" /> - <link rel="apple-touch-icon" sizes="144x144" href="//i.juick.com/apple-icon-144x144.png" /> - <link rel="apple-touch-icon" sizes="152x152" href="//i.juick.com/apple-icon-152x152.png" /> - <link rel="apple-touch-icon" sizes="180x180" href="//i.juick.com/apple-icon-180x180.png" /> - <link rel="icon" type="image/png" sizes="32x32" href="//i.juick.com/favicon-32x32.png" /> - <link rel="icon" type="image/png" sizes="96x96" href="//i.juick.com/favicon-96x96.png" /> - <link rel="icon" type="image/png" sizes="16x16" href="//i.juick.com/favicon-16x16.png" /> - <link rel="manifest" href="//i.juick.com/manifest.json" /> -</head> - -<body id="body" {% if visitor.uid > 0 %}data-hash="{{visitor.authHash}}" {% endif %}> - <div id="app"> - {% include "views/partial/navigation" %} - <div id="content_wrapper"> - <aside id="column"> - <div id="sidebar_wrapper"> - {% block column %} - {% endblock %} - </div> - </aside> - <section id="content" {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}" {% endif %} class="content--top"> - {% block content %} - {% endblock %} - </section> - </div> - </div> -</body> - -</html>
\ No newline at end of file |