diff --git a/sculpin/source/_layouts/presentation.html.twig b/sculpin/source/_layouts/presentation.html.twig index a0575e0dd..1d8d875e8 100644 --- a/sculpin/source/_layouts/presentation.html.twig +++ b/sculpin/source/_layouts/presentation.html.twig @@ -2,6 +2,11 @@ {% block meta_description %}{{ page.title }} presented by Oliver Davies{% endblock %} +{% block page_title -%} + {{ page.title }} + {%- if page.type is same as "lightning_talk" %} (Lightning Talk){% endif %} +{%- endblock %} + {% block content_wrapper %} {{ parent() }} diff --git a/sculpin/source/_pages/presentations.html.twig b/sculpin/source/_pages/presentations.html.twig index cdf39aafc..ecbe09ca9 100644 --- a/sculpin/source/_pages/presentations.html.twig +++ b/sculpin/source/_pages/presentations.html.twig @@ -10,7 +10,10 @@ use: [presentations]

- {{ presentation.title }} + + {{- presentation.title }} + {%- if presentation.type is same as "lightning_talk" %} (Lightning Talk){% endif -%} +

diff --git a/sculpin/source/_presentations/nix-lightning-talk.md b/sculpin/source/_presentations/nix-lightning-talk.md new file mode 100644 index 000000000..f080292c0 --- /dev/null +++ b/sculpin/source/_presentations/nix-lightning-talk.md @@ -0,0 +1,20 @@ +--- +title: Nix and PHP +type: lightning_talk +events: + - name: PHP South West + location: Bristol, UK + date: 2025-11-12 +new_events: true +--- + + +{% block description %} +An impromptu lightning talk and demo about Nix and PHP. +{% endblock %} + +{% block content %} +An impromptu lightning talk and demo about Nix and PHP as a precursor to my longer [Nix for PHP Developers][0] talk. + +[0]: /presentations/nix-for-php-developers +{% endblock %}