Main page setup
This commit is contained in:
parent
5db02d292d
commit
e9349c8339
37
templates/base.html
Normal file
37
templates/base.html
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% block head %}
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{% endblock title %} | {{config.extra.name}}</title>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Urbanist&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
|
||||
<link rel="stylesheet" href="/styles/layout.css">
|
||||
{% endblock head %}
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="profile-card">
|
||||
{% block profile %}
|
||||
{% endblock profile %}
|
||||
</div>
|
||||
<div class="navigation-bar">
|
||||
<hr>
|
||||
<p>
|
||||
<a href="/">Home</a> |
|
||||
<a href="/blog">Blog</a>
|
||||
</p>
|
||||
<hr>
|
||||
</div>
|
||||
<div class="page-content">
|
||||
{% block content %}
|
||||
{% endblock content %}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user