mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-10 04:08:34 -06:00
Refactor .content-inner div to wrap all content blocks
This commit is contained in:
@@ -13,9 +13,11 @@
|
|||||||
<div class="content-outer">
|
<div class="content-outer">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{% include 'layouts/header.html' %}
|
{% include 'layouts/header.html' %}
|
||||||
{% block content %}
|
<div class="content-inner">
|
||||||
Do not extend <strong>base.html</strong> directly.
|
{% block content %}
|
||||||
{% endblock content %}
|
Do not extend <strong>base.html</strong> directly.
|
||||||
|
{% endblock content %}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% include 'layouts/footer.html' %}
|
{% include 'layouts/footer.html' %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,10 +1,5 @@
|
|||||||
{% extends 'layouts/base.html' %}
|
{% extends 'layouts/base.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
<h4>New Users</h4>
|
<h4>New Users</h4>
|
||||||
<div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
<div id="about">
|
<div id="about">
|
||||||
<p>Designed for RowdyHacks 2022, <strong>Runnerspace</strong> is a retro throwback site designed to mimic the feel and features
|
<p>Designed for RowdyHacks 2022, <strong>Runnerspace</strong> is a retro throwback site designed to mimic the feel and features
|
||||||
of the popular website 'MySpace' and other social media of it's era. Runnerspace aims to be simple, easy to use, easy to
|
of the popular website 'MySpace' and other social media of it's era. Runnerspace aims to be simple, easy to use, easy to
|
||||||
@@ -11,5 +10,4 @@
|
|||||||
Seligman</a>. You can find all the source code and a full commit log at <a href="https://github.com/Xevion/runnerspace">github.com/Xevion/runnerspace</a>.
|
Seligman</a>. You can find all the source code and a full commit log at <a href="https://github.com/Xevion/runnerspace">github.com/Xevion/runnerspace</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
{% with messages = get_flashed_messages() %}
|
{% with messages = get_flashed_messages() %}
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
<div class="notification is-danger">
|
<div class="notification is-danger">
|
||||||
@@ -33,5 +32,4 @@
|
|||||||
<p class="form-subtext">
|
<p class="form-subtext">
|
||||||
Don't have a login? <a href="{{ url_for('main.signup') }}">Sign-up</a> instead!
|
Don't have a login? <a href="{{ url_for('main.signup') }}">Sign-up</a> instead!
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
{% with messages = get_flashed_messages() %}
|
{% with messages = get_flashed_messages() %}
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
<div class="notification is-danger">
|
<div class="notification is-danger">
|
||||||
@@ -36,5 +35,4 @@
|
|||||||
<p class="form-subtext">
|
<p class="form-subtext">
|
||||||
Already have a login? <a href="{{ url_for('main.login') }}">Login</a> instead!
|
Already have a login? <a href="{{ url_for('main.login') }}">Login</a> instead!
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|||||||
@@ -1 +1,3 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
{% block content %}
|
||||||
|
{% endblock %}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
<div class="user-list">
|
<div class="user-list">
|
||||||
{% for user_row in users|batch(2, ' ') %}
|
{% for user_row in users|batch(2, ' ') %}
|
||||||
<div class="user-list-row">
|
<div class="user-list-row">
|
||||||
@@ -32,5 +31,4 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -1 +1,5 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
{% endblock content %}
|
||||||
|
|||||||
@@ -1 +1,4 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
|
|||||||
@@ -1 +1,4 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
|
|||||||
@@ -1 +1,4 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
<div class="profile-title">
|
<div class="profile-title">
|
||||||
<span class="profile-username">{{ user.name }}</span>
|
<span class="profile-username">{{ user.name }}</span>
|
||||||
{% with seen_text = user.get_last_seen() %}
|
{% with seen_text = user.get_last_seen() %}
|
||||||
@@ -28,5 +27,4 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
{% extends 'layouts/index.html' %}
|
{% extends 'layouts/index.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content-inner">
|
|
||||||
<h3>Edit Profile</h3>
|
<h3>Edit Profile</h3>
|
||||||
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
Reference in New Issue
Block a user