mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-08-12 00:10:31 -04:00
Initial commit
This commit is contained in:
commit
4ab7e7262f
147 changed files with 7847 additions and 0 deletions
1
themes/DeepThought/templates/shortcodes/chart.html
Normal file
1
themes/DeepThought/templates/shortcodes/chart.html
Normal file
|
@ -0,0 +1 @@
|
|||
<svg class="chart">{{body | safe}}</svg>
|
After Width: | Height: | Size: 41 B |
1
themes/DeepThought/templates/shortcodes/galleria.html
Normal file
1
themes/DeepThought/templates/shortcodes/galleria.html
Normal file
|
@ -0,0 +1 @@
|
|||
<div class="galleria mb-6" style="height: 450px">{{body | safe}}</div>
|
1
themes/DeepThought/templates/shortcodes/katex.html
Normal file
1
themes/DeepThought/templates/shortcodes/katex.html
Normal file
|
@ -0,0 +1 @@
|
|||
<script type="math/tex{% if block %};mode=display{% endif %}">{{body}}</script>
|
11
themes/DeepThought/templates/shortcodes/mapbox.html
Normal file
11
themes/DeepThought/templates/shortcodes/mapbox.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<div class="map mb-6" style='height: 450px;'>
|
||||
<div class="mapbox-access-token">
|
||||
{{config.extra.mapbox.access_token}}
|
||||
</div>
|
||||
<div class="mapbox-zoom">
|
||||
{{zoom}}
|
||||
</div>
|
||||
<div class="mapbox-geojson">
|
||||
{{body}}
|
||||
</div>
|
||||
</div>
|
1
themes/DeepThought/templates/shortcodes/mermaid.html
Normal file
1
themes/DeepThought/templates/shortcodes/mermaid.html
Normal file
|
@ -0,0 +1 @@
|
|||
<div class="mermaid is-flex is-justify-content-center is-align-items-center">{{body}}</div>
|
9
themes/DeepThought/templates/shortcodes/vimeo.html
Normal file
9
themes/DeepThought/templates/shortcodes/vimeo.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div class="vimeo is-flex is-justify-content-center is-align-items-center">
|
||||
<iframe
|
||||
width="848" height="510"
|
||||
title="vimeo-player"
|
||||
src="https://player.vimeo.com/video/{{id}}"
|
||||
frameborder="0"
|
||||
allowfullscreen>
|
||||
</iframe>
|
||||
</div>
|
9
themes/DeepThought/templates/shortcodes/youtube.html
Normal file
9
themes/DeepThought/templates/shortcodes/youtube.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div class="youtube is-flex is-justify-content-center is-align-items-center">
|
||||
<iframe
|
||||
width="848" height="510"
|
||||
src="https://www.youtube.com/embed/{{id}}"
|
||||
frameborder="0"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowfullscreen>
|
||||
</iframe>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue