blob: 88c763b44fcadca4f6df39745944ef2d4fd51f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body class="random-project">
{% if page.branding == true %}
<div class="random-project__header">
<div class="logo">
<img src="{{ "assets/face.jpg" | relativize_url }}" alt="Noah Loomans" class="logo">
</div>
<div class="text">Random Project</div>
<div class="grow"></div>
<a href="{{ "/" | relativize_url }}">Go to main site</a>
</div>
{% endif %}
{{ content }}
</body>
</html>
|