article list work

This commit is contained in:
Lorin Werthen 2016-07-18 11:52:46 +02:00
parent 472fd2db51
commit c7dfc46229
5 changed files with 14 additions and 6 deletions

View file

@ -30,11 +30,13 @@
</div>
<div id="all-events">
<div class="pure-g">
<% 9.times do |n| %>
<% articles.each do |article| %>
<div class="pure-u-1-3">
<div class="event">
<img class="pure-img" src='<%= "http://lorempixel.com/400/#{400 + n}/" %>' alt="" />
</div>
<a href="<%= relative_path_to(article) %>">
<div class="event">
<img class="pure-img" src='<%= article[:banner] %>' alt="" />
</div>
</a>
</div>
<% end %>
</div>

View file

@ -1,8 +1,10 @@
---
title: Xtext Workshop
banner: https://zeus.ugent.be/wp-content/uploads/2016/04/450px-Xtext_logo.png
time: 26 april om 18:00
created_at: 01-04-2016
time: 26-04-2016
location: Auditorium A2, Campus Sterre, Gebouw S9
kind: article
---
Op **26 april om 18:00 in Auditorium A2, Campus Sterre, Gebouw S9** organiseren we een workshop over [Xtext](https://eclipse.org/Xtext/). **Xtext** is een framework om nieuwe domein-specifieke computertalen (**DSLs**) mee te ontwerpen. Een **DSL** kan een nieuwe programmeertaal zijn, maar is meestal erg specifiek: bijvoorbeeld voor het besturen van robots, voor controle van wasmachines of voor sturing van de on-board computer in autos. Mensen die deze machines maken zijn vaak geen programmeurs, en zij kunnen veel vlotter werken met een DSL dan met een algemene programmeertaal.

3
lib/builtin.rb Normal file
View file

@ -0,0 +1,3 @@
include Nanoc::Helpers::Blogging
include Nanoc::Helpers::Capturing
include Nanoc::Helpers::LinkTo

View file

@ -1 +0,0 @@
include Nanoc::Helpers::Capturing

View file

@ -1,3 +1,5 @@
base_url: https://zeus.ugent.be
# The syntax to use for patterns in the Rules file. Can be either `"glob"`
# (default) or `"legacy"`. The former will enable glob patterns, which behave
# like Rubys File.fnmatch. The latter will enable Nanoc 3.x-style patterns.