Updated to accept custom CSS -not final form
This commit is contained in:
parent
46dee697fe
commit
19c7af9dcb
3 changed files with 18 additions and 0 deletions
7
static/css/library.css
Normal file
7
static/css/library.css
Normal file
|
@ -0,0 +1,7 @@
|
|||
.wip {
|
||||
opacity: 50%;
|
||||
border: 5px solid #d11586
|
||||
}
|
||||
.dnf {
|
||||
opacity: 30%;
|
||||
}
|
|
@ -56,6 +56,9 @@
|
|||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
{% endblock head %}
|
||||
{% block somemorehead %}
|
||||
{% endblock somemorehead %}
|
||||
|
||||
</head>
|
||||
|
||||
<body class="is-preload">
|
||||
|
|
|
@ -13,6 +13,14 @@
|
|||
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block somemorehead %}
|
||||
{% if page.libary %}
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/library.css">
|
||||
{% endif %}
|
||||
|
||||
{% endblock somemorehead %}
|
||||
|
||||
<section id="content" class="body">
|
||||
{% block content %}
|
||||
<header>
|
||||
|
|
Loading…
Reference in a new issue