Implemented tools as applets, Added Docker CCTV page, Fixed small issues
Update app.py, uuid-generator.yml, and 47 more files...
This commit is contained in:
5
templates/elements/code.jinja
Normal file
5
templates/elements/code.jinja
Normal file
@@ -0,0 +1,5 @@
|
||||
<code class="code ox-auto w-full d-inline-block position-relative language-{{ code_language }}">
|
||||
{% for code_line in code_lines %}
|
||||
<span class="code-line t-nowrap">{{ code_line }}</span><br>
|
||||
{% endfor %}
|
||||
</code>
|
9
templates/elements/list-ul.jinja
Normal file
9
templates/elements/list-ul.jinja
Normal file
@@ -0,0 +1,9 @@
|
||||
<ul class="l-bullets l-bullet-manual">
|
||||
{% for list_item in list_items %}
|
||||
{% if list_item.__class__.__name__ == 'list' %}
|
||||
{{ render_list_ul(list_item) }}
|
||||
{% else %}
|
||||
<li>{{ list_item }}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
@@ -1,3 +1,3 @@
|
||||
<p class="mt-xs mx-s">
|
||||
<p class="mt-xs">
|
||||
{{ paragraph_inner_html }}
|
||||
</p>
|
Reference in New Issue
Block a user