- {{ event.date|date('j F Y') }}
+ {% if event.fuzzy_date %}
+ {{ event.date|date('F Y') }}
+ {% else %}
+ {{ event.date|date('j F Y') }}
+ {% endif %}
{% if event.time %}
diff --git a/source/_talks/deploying-php-with-fabric.md b/source/_talks/deploying-php-with-fabric.md
index 201b2e77..88dcfa2a 100644
--- a/source/_talks/deploying-php-with-fabric.md
+++ b/source/_talks/deploying-php-with-fabric.md
@@ -1,14 +1,13 @@
---
title: Deploying PHP Applications with Fabric
-type: Lightning talk
-location: Nomad PHP
+type: Talk
slides:
url: https://speakerdeck.com/opdavies/deploying-php-applications-with-fabric
embed: ''
video:
embed: ''
url: https://www.youtube.com/watch?v=kM0MDUJE8ys
-tags: [meetup, php, fabric]
+tags: [meetup, conference, php, fabric]
meta:
og:
title: Deploying PHP Applcations with Fabric
@@ -21,6 +20,7 @@ meta:
type: image/png
events:
- { id: nomad_php, date: '2017-04-20', time: '19:00 (CET)' }
+ - { id: phpnw-17, date: '2017-09', fuzzy_date: true }
---
You’ve built your application, and now you just need to deploy it. There are various ways that this could be done – from (S)FTP, to SCP and rsync, to running commands like “git pull” and “composer install” directly on the server (not recommended).