Added talk.html.twig
This commit is contained in:
parent
89cf4acb32
commit
f61e8d8333
|
@ -19,7 +19,6 @@ sculpin_content_types:
|
||||||
- tags
|
- tags
|
||||||
enabled: false
|
enabled: false
|
||||||
talks:
|
talks:
|
||||||
layout: default
|
|
||||||
permalink: talks/:year/:month/:day/:slug_title/
|
permalink: talks/:year/:month/:day/:slug_title/
|
||||||
taxonomies:
|
taxonomies:
|
||||||
- tags
|
- tags
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
title: So, what is this Drupal thing?
|
title: So, what is this Drupal thing?
|
||||||
location: unified.diff
|
location: unified.diff
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
An introduction to [Drupal](https://www.drupal.org).
|
An introduction to [Drupal](https://www.drupal.org).
|
|
@ -7,5 +7,6 @@ tags:
|
||||||
- ldap
|
- ldap
|
||||||
meta:
|
meta:
|
||||||
description: 'Integrating Drupal with LDAP.'
|
description: 'Integrating Drupal with LDAP.'
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
An overview of the [Drupal LDAP module](https://www.drupal.org/project/ldap) and how I integrated and customised it for a client project.
|
An overview of the [Drupal LDAP module](https://www.drupal.org/project/ldap) and how I integrated and customised it for a client project.
|
|
@ -10,4 +10,5 @@ tags:
|
||||||
meta:
|
meta:
|
||||||
description:
|
description:
|
||||||
slug: git-flow
|
slug: git-flow
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
|
|
|
@ -9,5 +9,6 @@ tags:
|
||||||
- drush-make
|
- drush-make
|
||||||
meta:
|
meta:
|
||||||
description: 'An introduction to Drush and Drush Make.'
|
description: 'An introduction to Drush and Drush Make.'
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
An introduction to Drush and Drush Make.
|
An introduction to Drush and Drush Make.
|
|
@ -8,5 +8,6 @@ tags:
|
||||||
meta:
|
meta:
|
||||||
description: "An impromptu talk about the Drupal Association and I've done there since joining the team."
|
description: "An impromptu talk about the Drupal Association and I've done there since joining the team."
|
||||||
slug: drupal-association
|
slug: drupal-association
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
An impromptu talk about the [Drupal Association](https://assoc.drupal.org) and I've done there since joining the team.
|
An impromptu talk about the [Drupal Association](https://assoc.drupal.org) and I've done there since joining the team.
|
|
@ -10,4 +10,5 @@ tags:
|
||||||
meta:
|
meta:
|
||||||
description: 'Everything that you wanted to know about Drupal 8 in ten minutes, but were afraid to ask!'
|
description: 'Everything that you wanted to know about Drupal 8 in ten minutes, but were afraid to ask!'
|
||||||
slug: drupalorg-2015
|
slug: drupalorg-2015
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
|
|
|
@ -10,4 +10,5 @@ tags:
|
||||||
meta:
|
meta:
|
||||||
description: 'Everything that you wanted to know about Drupal 8 in ten minutes, but were afraid to ask!'
|
description: 'Everything that you wanted to know about Drupal 8 in ten minutes, but were afraid to ask!'
|
||||||
slug: drupalorg-2015
|
slug: drupalorg-2015
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
|
|
|
@ -11,4 +11,5 @@ tags:
|
||||||
meta:
|
meta:
|
||||||
description: 'Everything that you wanted to know about Drupal 8 in ten minutes, but were afraid to ask!'
|
description: 'Everything that you wanted to know about Drupal 8 in ten minutes, but were afraid to ask!'
|
||||||
slug: drupal-8
|
slug: drupal-8
|
||||||
|
nav: talks
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
title: Talks
|
title: Talks
|
||||||
|
nav: talks
|
||||||
use:
|
use:
|
||||||
- talks
|
- talks
|
||||||
---
|
---
|
||||||
|
|
8
source/themes/opdavies/opdavies/_layouts/talk.html.twig
Normal file
8
source/themes/opdavies/opdavies/_layouts/talk.html.twig
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{% extends 'default' %}
|
||||||
|
|
||||||
|
{% block content_wrapper %}
|
||||||
|
<div class="col-md-9">
|
||||||
|
<h1>{{ page.title }}</h1>
|
||||||
|
{% block content %}{% endblock %}
|
||||||
|
</div>{# .col-md-9 #}
|
||||||
|
{% endblock %}
|
Loading…
Reference in a new issue