Update 'views/layout.twig'

This commit is contained in:
Robert 2019-12-24 19:03:10 +00:00
parent eeba16d34f
commit f548dec79e

View file

@ -2,8 +2,7 @@
<html lang="en">
<head>
<title>{{ title }} - Minverse</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel='stylesheet' href='/stylesheets/style.css' />
<!-- link to icons and configs -->
<link rel="apple-touch-icon" sizes="180x180" href="/s/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/s/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/s/img/favicon-16x16.png">
@ -13,11 +12,24 @@
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="/s/img/browserconfig.xml">
<meta name="theme-color" content="#000000">
<!-- link to stylesheets -->
<link rel="stylesheet" type="text/css" href="/s/stylesheets/style.css">
</head>
<body>
<div id="site-header">
<div id="header-container">
<div id="header-logo"></div>
<div id="header-login">
<span class="signupsymbol symbol">c</span>
<span class="signuptext">Sign in</span>
</div>
</div>
<div id="content-container">
{% block body %}{% endblock %}
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<div id="footer">
<p id="footer-links">Links!</p>
<p id="footer-text">Minverse is non-profit and is not associated with Miiverse, Nintendo, or Hatena.</p>
</div>
</div>
</body>
</html>