moved static files into themes
This commit is contained in:
31
themes/default/templates/content_item.html
Normal file
31
themes/default/templates/content_item.html
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
{% extends "default.html" %}
|
||||
|
||||
{% block head_includes %}
|
||||
{% if content_item.css_file %}
|
||||
<link rel="stylesheet" href="{{ parent_path }}static/css/{{ content_item.slug }}.css">
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="container mt-4 mb-5">
|
||||
{% if content_item.image_file %}<img src="{{ parent_path }}static/images/{{ content_item.image_file }}" class="img-fluid mb-5 rounded w-100 h-auto">{% endif %}
|
||||
{% if not content_item.omit_second_title %}
|
||||
<h1>{{ content_item.title }}</h1>
|
||||
{% endif %}
|
||||
<article>{{ content_item.html | safe }}</article>
|
||||
<div id="categories">
|
||||
{% for category in content_item.categories %}
|
||||
<a href="{{ parent_path }}categories/{{ category }}.html" class="mx-1 text-decoration-none small text-muted">{{ category }} </a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<a href="../index.html" class="btn btn-secondary mt-4">← Back</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block footer_includes %}
|
||||
{% if content_item.js_file %}
|
||||
<script src="{{ parent_path}}static/js/{{ content_item.slug }}.js"></script>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user