Browse Source

testing with minor changes

redesign
Anxhelo Lushka 7 years ago
parent
commit
696bf2bffc
  1. 2
      _config.yml
  2. 8
      events/index.html

2
_config.yml

@ -29,3 +29,5 @@ paginate_path: "blog/older:num"
collections: collections:
- events - events
output: true output: true
collections_dir: events

8
events/index.html

@ -5,7 +5,11 @@ title: Events
--- ---
{% for item in site.events %} {% for item in site.events %}
<div class="row"> <h2>{{ item.title }}</h2>
<p>{{ item.date }}</p>
<p><a href="{{ item.url }}">{{ item.title }}</a></p>
{% endfor %}
<!-- <div class="row">
<div class="large-12 columns table" style="border-bottom: 3px solid aliceblue;"> <div class="large-12 columns table" style="border-bottom: 3px solid aliceblue;">
{% assign mod = forloop.index | modulo: 1 %} {% assign mod = forloop.index | modulo: 1 %}
{% if mod == 0 %} {% if mod == 0 %}
@ -46,4 +50,4 @@ title: Events
</div> </div>
</div> </div>
<div class="two spacing"></div> <div class="two spacing"></div>
{% endfor %} {% endfor %} -->

Loading…
Cancel
Save