Change /talks to /presentations
This commit is contained in:
parent
8158c679fd
commit
37603296f0
91 changed files with 168 additions and 166 deletions
|
@ -6,7 +6,7 @@ title: Page not found
|
|||
Perhaps you were looking for one of these pages:
|
||||
|
||||
- [Products and services](/pricing)
|
||||
- [Public speaking and workshops](/talks)
|
||||
- [Public speaking and workshops](/presentations)
|
||||
- [My daily email list](/daily)
|
||||
- [The Beyond Blocks podcast](/podcast)
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 646df70626c07503d7ab7e90c8d257c63fb1e5b7
|
||||
Subproject commit f31e5c4364890b2a31b3acd961f78565ad822de9
|
|
@ -9,7 +9,7 @@ title: Hi, PHP Oxford!
|
|||
{% block content %}
|
||||
Thanks for attending my talk on [Build Configs](/build-configs).
|
||||
|
||||
[These are the slides](/talks/building-build-configs) I presented and the example video:
|
||||
[These are the slides](/presentations/building-build-configs) I presented and the example video:
|
||||
|
||||
{% include 'youtube-video' with { id: 'LkhsdmxReUc'} %}
|
||||
|
||||
|
@ -21,7 +21,7 @@ If you have any further questions, let me know.
|
|||
|
||||
[Get in touch](/contact) if you're interested in using Build Configs-based managed configuration files in your projects (I offer one-off implementations or ongoing updates via a subscription), you need an in-house tool built for your team, or if we can [work together another way](/pricing).
|
||||
|
||||
If you liked the talk, or [any of my others](/talks), I can also present talks and run workshops for companies.
|
||||
If you liked the talk, or [any of my others](/presentations), I can also present talks and run workshops for companies.
|
||||
|
||||
## While you're here
|
||||
|
||||
|
|
|
@ -28,8 +28,8 @@ All emails are sent from my personal email address, so you can press reply and c
|
|||
[consulting]: /consulting
|
||||
[course]: /atdc
|
||||
[email list]: /daily
|
||||
[tailwind css]: /talks/taking-flight-with-tailwind-css
|
||||
[test driven drupal]: /talks/tdd-test-driven-drupal
|
||||
[tailwind css]: /presentations/taking-flight-with-tailwind-css
|
||||
[test driven drupal]: /presentations/tdd-test-driven-drupal
|
||||
[workshop]: /archive/2024/01/22/tailwind-css-workshop-recording
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -9,7 +9,7 @@ title: PHP Berkshire
|
|||
{% block content %}
|
||||
Thank you for attending my Sculpin talk at PHP Berkshire.
|
||||
|
||||
[The slides and a previous recording](/talks/building-static-websites-sculpin) are on the talk page.
|
||||
[The slides and a previous recording](/presentations/building-static-websites-sculpin) are on the talk page.
|
||||
|
||||
To see an example of a Sculpin project, you can see [the source code for this website](https://github.com/opdavies/oliverdavies.uk), [my Zettlekasten](https://github.com/opdavies/zet.oliverdavies.uk) or [my demo for PHP South West](https://github.com/opdavies/phpsw-sculpin-demo).
|
||||
|
||||
|
|
18
source/_pages/presentations.md
Normal file
18
source/_pages/presentations.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: Presentations
|
||||
use: [presentations]
|
||||
---
|
||||
|
||||
Since September 2012, I have given {{ get_presentation_count(data.presentations) }} public talks and workshops at various conferences and meetups, in-person and remotely, on topics including PHP, Drupal, automated testing, Git, CSS, and systems administration.
|
||||
|
||||
{% for talk in data.presentations|sort((a, b) => a.events|last.date|date('U') > b.events|last.date|date('U') ? -1 : 1) %}
|
||||
<article>
|
||||
<div class="not-prose">
|
||||
<h2 class="text-xl font-bold">
|
||||
<a class="font-bold text-blue-primary dark:text-blue-400" href="{{ talk.url|trim('/', 'right') }}">{{ talk.title }}</a>
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<p>{{ talk.description }}</p>
|
||||
</article>
|
||||
{% endfor %}
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
title: Talks and Workshops
|
||||
use: [talks]
|
||||
---
|
||||
|
||||
Since September 2012, I have given {{ get_past_talk_count(data.talks) }} public presentations and workshops at various conferences and meetups, in-person and remotely, on topics including PHP, Drupal, automated testing, Git, CSS, and systems administration.
|
||||
|
||||
{% for talk in data.talks|sort((a, b) => a.events|last.date|date('U') > b.events|last.date|date('U') ? -1 : 1) %}
|
||||
<article>
|
||||
<div class="not-prose">
|
||||
<h2 class="text-xl font-bold">
|
||||
<a class="font-bold text-blue-primary dark:text-blue-400" href="{{ talk.url|trim('/', 'right') }}">{{ talk.title }}</a>
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<p>{{ talk.description }}</p>
|
||||
</article>
|
||||
{% endfor %}
|
Loading…
Add table
Add a link
Reference in a new issue