various stuff, including small caps
This commit is contained in:
parent
f8a7fec779
commit
40705033f2
5 changed files with 9 additions and 5 deletions
7
Rules
7
Rules
|
@ -1,13 +1,15 @@
|
|||
#!/usr/bin/env ruby
|
||||
# frozen_string_literal: true
|
||||
|
||||
# ERB
|
||||
compile '/**/*.erb' do
|
||||
filter :erb
|
||||
layout '/default.erb'
|
||||
filter :relativize_paths, type: :html
|
||||
end
|
||||
|
||||
# relativize_paths
|
||||
compile '/**/*.{erb,html}' do
|
||||
compile '/**/*.html' do
|
||||
filter :relativize_paths, type: :html
|
||||
end
|
||||
|
||||
|
@ -23,6 +25,8 @@ end
|
|||
|
||||
# Compile all posts
|
||||
compile '/posts/**/*.md' do
|
||||
@item.attributes[:kind] = 'article'
|
||||
|
||||
filter :kramdown
|
||||
|
||||
layout '/eventpost.erb'
|
||||
|
@ -52,5 +56,4 @@ route '/**/*.{erb,html,md}' do
|
|||
"#{item.identifier.without_ext}/index.html"
|
||||
end
|
||||
|
||||
|
||||
layout '/**/*', :erb
|
||||
|
|
|
@ -76,6 +76,9 @@ a, a:hover, a:visited, a:link, a:active {
|
|||
padding: 8px;
|
||||
transition: 0.2s;
|
||||
|
||||
font-variant: small-caps;
|
||||
font-size: 1.25em;
|
||||
|
||||
&, &:hover, &:visited, &:link, &:active {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<div id="up" class="ctrl" command="set_relative_pos" posX="0" posY="10">
|
||||
<i class="fa fa-chevron-up fa-2x"></i>
|
||||
</div>
|
||||
<div id="down" class="ctrl" command="set_relative_pos" posX="0" posY="-10">
|
||||
<div id="down" class="ctrl" command="set_relative_pos" posX="0" posY="-10">
|
||||
<i class="fa fa-chevron-down fa-2x"></i>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,6 @@ banner: https://zeus.ugent.be/wp-content/uploads/2016/02/awkles-768x1007.jpg
|
|||
created_at: 01-02-2016
|
||||
time: 23-02-2016
|
||||
location: Auditorium A1, Campus Sterre, Gebouw S9
|
||||
kind: article
|
||||
---
|
||||
|
||||
Op **dinsdag 23 februari 18:00** (na de les Scriptingtalen) in **Auditorium A1** organiseren we een **AWK-les** gegeven door **professor Peter Dawyndt**.
|
||||
|
|
|
@ -4,7 +4,6 @@ banner: https://zeus.ugent.be/wp-content/uploads/2016/04/450px-Xtext_logo.png
|
|||
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 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.
|
||||
|
|
Loading…
Reference in a new issue