article list work
This commit is contained in:
parent
472fd2db51
commit
c7dfc46229
5 changed files with 14 additions and 6 deletions
|
@ -30,11 +30,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="all-events">
|
<div id="all-events">
|
||||||
<div class="pure-g">
|
<div class="pure-g">
|
||||||
<% 9.times do |n| %>
|
<% articles.each do |article| %>
|
||||||
<div class="pure-u-1-3">
|
<div class="pure-u-1-3">
|
||||||
<div class="event">
|
<a href="<%= relative_path_to(article) %>">
|
||||||
<img class="pure-img" src='<%= "http://lorempixel.com/400/#{400 + n}/" %>' alt="" />
|
<div class="event">
|
||||||
</div>
|
<img class="pure-img" src='<%= article[:banner] %>' alt="" />
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
---
|
---
|
||||||
title: Xtext Workshop
|
title: Xtext Workshop
|
||||||
banner: https://zeus.ugent.be/wp-content/uploads/2016/04/450px-Xtext_logo.png
|
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
|
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 auto’s. Mensen die deze machines maken zijn vaak geen programmeurs, en zij kunnen veel vlotter werken met een DSL dan met een algemene programmeertaal.
|
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 auto’s. 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
3
lib/builtin.rb
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
include Nanoc::Helpers::Blogging
|
||||||
|
include Nanoc::Helpers::Capturing
|
||||||
|
include Nanoc::Helpers::LinkTo
|
|
@ -1 +0,0 @@
|
||||||
include Nanoc::Helpers::Capturing
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
base_url: https://zeus.ugent.be
|
||||||
|
|
||||||
# The syntax to use for patterns in the Rules file. Can be either `"glob"`
|
# 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
|
# (default) or `"legacy"`. The former will enable glob patterns, which behave
|
||||||
# like Ruby’s File.fnmatch. The latter will enable Nanoc 3.x-style patterns.
|
# like Ruby’s File.fnmatch. The latter will enable Nanoc 3.x-style patterns.
|
||||||
|
|
Loading…
Reference in a new issue