Fix project paths
This commit is contained in:
parent
04c83f9c8b
commit
874d046550
|
@ -4,7 +4,7 @@ sculpin_content_types:
|
||||||
taxonomies:
|
taxonomies:
|
||||||
- tags
|
- tags
|
||||||
projects:
|
projects:
|
||||||
permalink: projects/:filename/
|
permalink: projects/:slug_title/
|
||||||
taxonomies:
|
taxonomies:
|
||||||
- skills
|
- skills
|
||||||
- tags
|
- tags
|
||||||
|
|
|
@ -8,4 +8,5 @@ image: drupalorg.png
|
||||||
company: drupal_association
|
company: drupal_association
|
||||||
role: Drupal.org Developer
|
role: Drupal.org Developer
|
||||||
skills: [drupal, php, git, sass, compass, jenkins]
|
skills: [drupal, php, git, sass, compass, jenkins]
|
||||||
|
slug: drupal-org
|
||||||
---
|
---
|
||||||
|
|
|
@ -10,4 +10,5 @@ image:
|
||||||
company: microserve
|
company: microserve
|
||||||
role: Lead Developer
|
role: Lead Developer
|
||||||
skills: [drupal, php, git, less]
|
skills: [drupal, php, git, less]
|
||||||
|
slug: road-cc
|
||||||
---
|
---
|
||||||
|
|
|
@ -6,6 +6,7 @@ tags:
|
||||||
- drupal-8
|
- drupal-8
|
||||||
year: 2016
|
year: 2016
|
||||||
image: drupalvmgenerator.com.png
|
image: drupalvmgenerator.com.png
|
||||||
|
slug: drupal-vm-generator-website
|
||||||
---
|
---
|
||||||
[drupalvmgenerator.com][1] is a Drupal 8 website for the Drupal VM Generator project.
|
[drupalvmgenerator.com][1] is a Drupal 8 website for the Drupal VM Generator project.
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,10 @@ title: Projects
|
||||||
use:
|
use:
|
||||||
- projects
|
- projects
|
||||||
---
|
---
|
||||||
{% for project in data.projects|reverse %}
|
<ul>
|
||||||
<a href="{{ project.url }}">{{ project.title }}</a><br>
|
{% for project in data.projects|reverse %}
|
||||||
{% endfor %}
|
<li>{% spaceless %}
|
||||||
|
<a href="{{ project.url }}">{{ project.title }}</a>
|
||||||
|
{% endspaceless %}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
Reference in a new issue