cotech-website/_layouts/co-op.html

17 lines
308 B
HTML
Raw Normal View History

---
---
<h1>{{ page.name }}</h1>
<a href="{{ page.website }}">{{ page.name }}</a>
2017-06-27 14:13:48 +00:00
{{ content }}
2017-06-27 15:08:54 +00:00
<h2>Services</h2>
<ul>
{% for service in page.services %}
{% assign s = site.services | where: "slug", service | first %}
<li><a href="{{ s.url | relative_url }}">{{ s.name }}</a></li>
{% endfor %}
</ul>