Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
www.tempertemper.net/src/site/category.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (41 sloc)
1.91 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
pagination: | |
data: collections | |
size: 1 | |
alias: category | |
filter: | |
- all | |
- resource | |
- testimonial | |
- post | |
layout: default | |
permalink: /category/{{ category | slugify | safe }}.html | |
--- | |
{% if category == 'Accessibility' %} | |
<p>Accessibility and inclusive design should be the first considerations when designing a digital product, service or website. | |
{% elif category == 'Apple' %} | |
<p>Apple are a company where good design is at the centre of everything they produce, both hardware and software. They don’t always pull it off, but I love that they sweat the tiniest details. | |
{% elif category == 'Business' %} | |
<p>I’m a small business owner; these are tips and tricks that might come in useful for other business owners. | |
{% elif category == 'Design' %} | |
<p>Interaction design, user experience design, user interface design; design is a fascinating subject. | |
{% elif category == 'Development' %} | |
<p>Frontend web development, from HTML, ARIA, CSS and JavaScript to Git and good development practices. | |
{% elif category == 'Markdown' %} | |
<p>For me, Markdown is the only way to write for the web. In fact, it should be the defacto way to write, full-stop! | |
{% elif category == 'Performance' %} | |
<p>If a website isn’t fast, it isn’t accessible. | |
{% elif category == 'Tools' %} | |
<p>The tools of the trade are important: hardware, apps, helpful features; even languages like <a href="/category/markdown">Markdown</a>. | |
{% elif category == 'Workflows' %} | |
<p>I’m always looking to refine the way I work, whether it’s process or the software I use. | |
{% else %} | |
<p>Articles and resources in the {{ category }} category. | |
{% endif %} | |
A <a href="/categories">full list of categories</a> is also available.</p> | |
<ol class="hfeed index-list" reversed> | |
{% set categoryList = collections[ category ] %} | |
{% for post in categoryList | reverse %} | |
{% include "post-in-list.html" %} | |
{% endfor %} | |
</ol> |