Fix project paths

This commit is contained in:
Oliver Davies 2016-06-07 23:13:36 +01:00
parent 04c83f9c8b
commit 874d046550
5 changed files with 11 additions and 4 deletions

View file

@ -4,7 +4,7 @@ sculpin_content_types:
taxonomies:
- tags
projects:
permalink: projects/:filename/
permalink: projects/:slug_title/
taxonomies:
- skills
- tags

View file

@ -8,4 +8,5 @@ image: drupalorg.png
company: drupal_association
role: Drupal.org Developer
skills: [drupal, php, git, sass, compass, jenkins]
slug: drupal-org
---

View file

@ -10,4 +10,5 @@ image:
company: microserve
role: Lead Developer
skills: [drupal, php, git, less]
slug: road-cc
---

View file

@ -6,6 +6,7 @@ tags:
- drupal-8
year: 2016
image: drupalvmgenerator.com.png
slug: drupal-vm-generator-website
---
[drupalvmgenerator.com][1] is a Drupal 8 website for the Drupal VM Generator project.

View file

@ -4,6 +4,10 @@ title: Projects
use:
- projects
---
{% for project in data.projects|reverse %}
<a href="{{ project.url }}">{{ project.title }}</a><br>
{% endfor %}
<ul>
{% for project in data.projects|reverse %}
<li>{% spaceless %}
<a href="{{ project.url }}">{{ project.title }}</a>
{% endspaceless %}</li>
{% endfor %}
</ul>