Rename titel and naam to more sensible names in code

This commit is contained in:
Midgard 2020-08-28 21:55:27 +02:00
parent f362f8302a
commit a8190433f0
Signed by: midgard
GPG key ID: 511C112F1331BBB4
4 changed files with 37 additions and 3 deletions

View file

@ -3,8 +3,8 @@
2. vul dit bestand in met volgende template
```
---
titel: <naam van de vereniging>
naam: <naam van de vereniging>
verkorte_naam: <verkorte naam van de vereniging>
konvent: <afkoring van het konvent waartoe de vereniging behoort>
themas:
<één of meer lijnen van het volgende formaat om te vermelden in welke thema's de vereniging hoort>

34
layouts/base.erb Normal file
View file

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Durf Doen! - <%= item[:naam] || abbreviation(item) %> </title>
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="shortcut icon" href="/assets/favicon.png">
<%#= item[:head] %>
</head>
<body>
<%= yield %>
<footer>
<div>
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
</div>
<p>©2020 Gentse studentenraad</p>
<div>
<p>Made with ♥ by <a href="https://zeus.gent">Zeus WPI</a></p>
</div>
</footer>
</body>
</html>

View file

@ -1,6 +1,6 @@
<html>
<head>
<title> Durf Doen! - <%= item[:titel] || item.identifier.without_ext.split('/').last %> </title>
<title> Durf Doen! - <%= item[:naam] || item.identifier.without_ext.split('/').last %> </title>
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="shortcut icon" href="/assets/favicon.png">
<%= item[:head] %>

View file

@ -1,3 +1,3 @@
<% for i in navigables %>
<%= link_to(i[:titel], i) %>
<%= link_to(i[:naam], i) %>
<% end %>