Rename titel and naam to more sensible names in code
This commit is contained in:
parent
f362f8302a
commit
a8190433f0
4 changed files with 37 additions and 3 deletions
|
@ -3,8 +3,8 @@
|
||||||
2. vul dit bestand in met volgende template
|
2. vul dit bestand in met volgende template
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
titel: <naam van de vereniging>
|
|
||||||
naam: <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>
|
konvent: <afkoring van het konvent waartoe de vereniging behoort>
|
||||||
themas:
|
themas:
|
||||||
<één of meer lijnen van het volgende formaat om te vermelden in welke thema's de vereniging hoort>
|
<één of meer lijnen van het volgende formaat om te vermelden in welke thema's de vereniging hoort>
|
||||||
|
|
34
layouts/base.erb
Normal file
34
layouts/base.erb
Normal 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>
|
|
@ -1,6 +1,6 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<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="stylesheet" href="/stylesheets/main.css">
|
||||||
<link rel="shortcut icon" href="/assets/favicon.png">
|
<link rel="shortcut icon" href="/assets/favicon.png">
|
||||||
<%= item[:head] %>
|
<%= item[:head] %>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<% for i in navigables %>
|
<% for i in navigables %>
|
||||||
<%= link_to(i[:titel], i) %>
|
<%= link_to(i[:naam], i) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Reference in a new issue