Re-add old posts

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent 1e0a05e330
commit 0401e039de
150 changed files with 11896 additions and 3 deletions

View file

@ -0,0 +1,8 @@
<figure class="block">
<img src="{{ image.src }}" alt="{{ image.alt }}" class="p-1 border">
{% if caption %}
<figcaption class="mt-1 mb-0 italic text-sm text-center text-gray-800">
{{ caption }}
</figcaption>
{% endif %}
</figure>

View file

@ -2,7 +2,7 @@
<div>
<h2 class="mb-2">Slides</h2>
{% include 'talk/speakerdeck' with {
{% include 'speakerdeck' with {
data: speakerdeck,
} only %}
</div>

View file

@ -0,0 +1,10 @@
<div class="my-4 flex justify-center {{ class }}">
<blockquote
class="twitter-tweet"
lang="en"
{% if not data_cards %}data-cards="hidden"{% endif %}
{% if no_parent %}data-conversation="none"{% endif %}
>
{{ content|raw }}
</blockquote>
</div>

View file

@ -0,0 +1,9 @@
<div class="{{ classes }}">
<iframe
src="https://www.youtube.com/embed/{{ video.id }}"
height="{{ video.attr.height }}"
width="{{ video.attr.width }}"
frameborder="0"
allowfullscreen
></iframe>
</div>