mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-09 22:08:25 -06:00
Add Form Styling, Improve Footer, Further divide content in "outer-content"
- Logo font-family
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layouts/base.html' %}
|
||||
|
||||
{% block content %}
|
||||
Hello, World!
|
||||
<div class="content-inner">Hello, World!</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user