Add the base theme
This commit is contained in:
parent
3a0d5f6be1
commit
73d0952eeb
3 changed files with 19 additions and 0 deletions
13
khaganat/static/css/khaganat.css
Normal file
13
khaganat/static/css/khaganat.css
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
html,body {
|
||||||
|
background: url("/static/images/website_khaganat_bg_v7.jpg") no-repeat center fixed;
|
||||||
|
font-family: "Verdana","Arial","Helvetica",sans-serif;
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-bloc {
|
||||||
|
margin: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #efeded;
|
||||||
|
opacity: 0.7;
|
||||||
|
border-radius: 1.4em;
|
||||||
|
}
|
BIN
khaganat/static/images/website_khaganat_bg_v7.jpg
Normal file
BIN
khaganat/static/images/website_khaganat_bg_v7.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 162 KiB |
|
@ -7,6 +7,10 @@
|
||||||
<link rel="stylesheet" href="{% static "bootstrap/4.0.0-beta.3/css/bootstrap.min.css" %}" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy">
|
<link rel="stylesheet" href="{% static "bootstrap/4.0.0-beta.3/css/bootstrap.min.css" %}" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy">
|
||||||
<!-- End bootstrap headers -->
|
<!-- End bootstrap headers -->
|
||||||
|
|
||||||
|
<!-- Begin global headers -->
|
||||||
|
<link rel="stylesheet" href="{% static "css/khaganat.css" %}">
|
||||||
|
<!-- End global headers -->
|
||||||
|
|
||||||
<!-- Begin custom headers -->
|
<!-- Begin custom headers -->
|
||||||
{% block headers %}{% endblock %}
|
{% block headers %}{% endblock %}
|
||||||
<!-- End custom headers -->
|
<!-- End custom headers -->
|
||||||
|
@ -14,6 +18,8 @@
|
||||||
<title>Khaganat - {% block title %}{% endblock %}</title>
|
<title>Khaganat - {% block title %}{% endblock %}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="container" id="main-content">
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue