Fix/html (#13)

* Remove style-guide from i18n builds

* Remove uncategorized from CN blog posts.

* Team images and alt attributes.

* Fixing language linkage

* Ignore missing or empty alt tags

* ignore sass-cache

* fix gitignore for sass-cache

* fix gitignore for sass-cache

* Only show language dropdown if the page is not a post (blog)

* New url with site.lang included.

* Removed the site.baseurl var from the posts.
This commit is contained in:
Perry Woodin 2016-09-12 15:25:54 -04:00 committed by GitHub
parent 5ee9ae4de9
commit ad056aa1cb
136 changed files with 189 additions and 172 deletions

View file

@ -13,9 +13,9 @@ description: pages.team.description
<div>
{% if member.image %}
<div><img src="/assets/img/team/{{ member.image }}"></div>
<div><img src="/assets/img/team/{{ member.image }}" alt="{{ member.name }}"></div>
{% else %}
<div><img src="/assets/img/team/anon.png"></div>
<div><img src="/assets/img/team/anon.png" alt="{{ member.name }}"></div>
{% endif %}
<div>{{ member.name }}</div>