Merge pull request #32 from ZeusWPI/data

Data
This commit is contained in:
lorin 2016-08-03 22:00:47 +02:00 committed by GitHub
commit 8dc7b56122
4 changed files with 11 additions and 115 deletions

View file

@ -22,24 +22,14 @@ title: About
Het bestuur zorgt ervoor dat alle wieltjes blijven draaien en organiseert regelmatig activiteiten voor de leden. Het bestuur voor het academiejaar 2016-2017 van Zeus WPI is.
<ul>
<% data_from(:bestuur).each do |lid| %>
<li>
Voorzitter: Wout Schellaert
</li>
<li>
Vice-voorzitter: Isaura Claeys
</li>
<li>
Penning: Jeroen De Clerck
</li>
<li>
Systeembeheerders: Rien Maertens &amp; Lorin Werthen
</li>
<li>
Activiteiten: Eloïse Piret
</li>
<li>
Project: Feliciaan De Palmenaer
<%= lid['rol'] %>:
<a href="mailto:<%= lid['mail'] %>">
<%= lid['naam'] %>
</a>
</li>
<% end %>
</ul>
<h2>Zeus waar? Zeus daar!</h2>

View file

@ -1,97 +0,0 @@
$zeus_orange: #FF7F00;
$event-padding: 10px;
$navbar-border-color: #CCC;
$event-border-color: #DDD;
$cammie-controls-color: rgba(0, 0, 0, 0.60);
img {
max-width: 200px;
}
.fa-ul {
list-style: none !important;
.fa {
font-size: inherit;
}
}
.header-top {
display: flex;
justify-content: space-between;
align-items: flex-end;
}
#navbar {
.nav-item {
transition: 0.2s;
font-variant: small-caps;
font-size: 1.25em;
&:hover {
transition: 0.2s;
}
}
}
#cammie {
object-fit: contain;
max-width: 100%;
height: auto;
}
.fullpage {
min-width: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
background-color: black;
}
.ctrl {
background-color: $cammie-controls-color;
color: white;
position: absolute;
z-index: 100;
// Chevron centering
display: flex;
justify-content: center;
align-items: center;
&:hover {
background-color: $zeus_orange;
z-index: 200;
cursor: pointer;
}
}
#left {
height: 100%;
width: 100px;
top: 0;
left: 0;
}
#right {
height: 100%;
width: 100px;
top: 0;
right: 0;
}
#up {
height: 100px;
width: 100%;
top: 0;
}
#down {
height: 100px;
width: 100%;
bottom: 0;
}

View file

@ -1,2 +1 @@
<%= event_calendar %>
<%= data_from "hey" %>

View file

@ -1,5 +1,9 @@
module DataHelper
def data_from(identifier)
p `ls data`
data = YAML.load_file("data/#{identifier}.yaml")
data.each do |d|
p d
end
data
end
end