Made some initial site layout
This commit is contained in:
@@ -6,7 +6,7 @@ def create_app():
|
||||
app = Flask(
|
||||
'Muspah',
|
||||
template_folder=os.path.join(os.path.dirname(__file__), 'templates'),
|
||||
static_folder=os.path.join(os.path.dirname(__file__), 'static'),
|
||||
static_folder=os.path.join(os.path.dirname(__file__), '..', 'static'),
|
||||
instance_relative_config=True
|
||||
)
|
||||
|
||||
|
||||
@@ -2,14 +2,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{% block title %}{% endblock %} | Muspah</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
||||
<link rel="stylesheet" href="/static/css/zaros.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Muspah</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div id="main-wrapper" class="container">
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -3,5 +3,13 @@
|
||||
{% block title %}Dashboard{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p>Welcome to the Muspah dashboard!</p>
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<header>
|
||||
<h1>Muspah</h1>
|
||||
</header>
|
||||
|
||||
<p>Welcome to the Muspah dashboard!</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user