1
0
Fork 0

corrected accordeon

This commit is contained in:
Moritz »mo.« Sauer 2015-02-12 20:11:03 +01:00
parent 372dd4bb7d
commit 1dbbf50302
3 changed files with 18 additions and 19 deletions

View file

@ -6965,17 +6965,17 @@ dd.accordion-navigation span {
/* line 46, ../scss/_4_typography_theme-fr.scss */ /* line 46, ../scss/_4_typography_theme-fr.scss */
dd.accordion-navigation span:before { dd.accordion-navigation span:before {
content: "\E766"; content: "\F107";
} }
/* line 47, ../scss/_4_typography_theme-fr.scss */ /* line 47, ../scss/_4_typography_theme-fr.scss */
dd.accordion-navigation.active span:before { dd.accordion-navigation.active span:before {
content: "\E764"; content: "\F105";
} }
/* line 48, ../scss/_4_typography_theme-fr.scss */ /* line 48, ../scss/_4_typography_theme-fr.scss */
dd.accordion-navigation.active span:before { dd.accordion-navigation.active span:before {
content: "\E764"; content: "\F105";
} }
/* line 51, ../scss/_4_typography_theme-fr.scss */ /* line 51, ../scss/_4_typography_theme-fr.scss */
@ -7144,9 +7144,9 @@ Additional typographical elements
font-size: 1rem; font-size: 1rem;
} }
/* /* Icon Font: iconfont
Icon Font: iconfont See the icon-set/preview in /assets/fonts/iconfont-preview.html
*/ ------------------------------------------------------------------- */
@font-face { @font-face {
font-family: 'iconfont'; font-family: 'iconfont';
src: url("../fonts/iconfont.eot"); src: url("../fonts/iconfont.eot");

File diff suppressed because one or more lines are too long

View file

@ -13,18 +13,17 @@ permalink: "blog/archive/"
{% if page.description %}<p class="teaser">{{ page.description }}</p>{% endif %} {% if page.description %}<p class="teaser">{{ page.description }}</p>{% endif %}
<dl class="accordion" data-accordion> <dl class="accordion" data-accordion>
{% assign counter = 1 %} {% assign counter = 1 %}
{% for post in site.posts limit:1000 %} {% for post in site.posts limit:1000 %}
<dd class="accordion-navigation"> <dd class="accordion-navigation">
<a href="#panel{{ counter }}"><span class="entypo entypo-16"></span> {% if post.subheadline %}{{ post.subheadline }} {% endif %}<strong>{{ post.title }}</strong></a> <a href="#panel{{ counter }}"><span class="iconfont"></span> {% if post.subheadline %}{{ post.subheadline }} {% endif %}<strong>{{ post.title }}</strong></a>
<div id="panel{{ counter }}" class="content"> <div id="panel{{ counter }}" class="content">
{% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.description %}{{ post.description | strip_html | escape }}{% endif %} {% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.description %}{{ post.description | strip_html | escape }}{% endif %}
<a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a><br><br> <a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a><br><br>
</div> </div>
</dd> </dd>
{% assign counter=counter | plus:1 %} {% assign counter=counter | plus:1 %}
{% endfor %} {% endfor %}
</dl> </dl>
</div><!-- /.small-12.columns --> </div><!-- /.small-12.columns -->
</div><!-- /.row --> </div><!-- /.row -->