Lots of cleanup:

-- resolves image paths for blog posts - all language specific posts will use common /assets/img/blog path. language specific images can be specified in the front-matter if necessary.
-- adds language for "platform not detected" message
-- removes redundant "What is Dash" from header navigation
This commit is contained in:
Chuck Williams 2017-02-02 22:49:14 -07:00
parent 90db58113a
commit 2252470ba9
18 changed files with 717 additions and 707 deletions

View file

@ -16,7 +16,7 @@ description: pages.blog.description
<article class="featurepost">
<div class="featurepost__preview {% if post.image %}featurepost__preview--image{% else %}featurepost__preview--no-image{% endif %}">
{% if post.image %}
<img src="{{ basenav }}/assets/img/blog/{{ post.image }}" class="featurepost__image">
<img src="/assets/img/blog/{{ post.image }}" class="featurepost__image">
{% endif %}
</div>