Add Form Styling, Improve Footer, Further divide content in "outer-content"

- Logo font-family
This commit is contained in:
Xevion
2022-03-26 20:15:44 -05:00
parent 19e582f72e
commit 5a640bc404
4 changed files with 73 additions and 11 deletions

View File

@@ -4,14 +4,17 @@
<meta charset="UTF-8">
<title>Runnerspace</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
</head>
<body>
<div id="content">
{% include 'layouts/header.html' %}
{% block content %}
Do not extend <strong>base.html</strong> directly.
{% endblock content %}
{% include 'layouts/footer.html' %}
</div>
<div class="content-outer">
<div class="content">
{% include 'layouts/header.html' %}
{% block content %}
Do not extend <strong>base.html</strong> directly.
{% endblock content %}
</div>
{% include 'layouts/footer.html' %}
</div>
</body>
</html>

View File

@@ -1,3 +1,15 @@
<div id="footer">
</div>
<footer>
<p>
created by <a href="https://github.com/Xevion">Ryan Walters</a> and <a href="https://github.com/Seligmann">Zachary Seligman</a>
</p>
<ul class="links">
<li><a href="/">ABCDEF</a></li>
<li><a href="/">GHIJK</a></li>
<li><a href="/">LMNOP</a></li>
<li><a href="/">QRSTUV</a></li>
<li><a href="/">WXYZ</a></li>
</ul>
<p class="copyright">
<a href="/">©2022 Runnerspace.live All Rights Reserved.</a>
</p>
</footer>

View File

@@ -1,5 +1,5 @@
{% extends 'layouts/base.html' %}
{% block content %}
Hello, World!
<div class="content-inner">Hello, World!</div>
{% endblock %}