1
+ {% load static %}
2
+ {% load static tailwind_tags %}
1
3
<!DOCTYPE html>
2
4
< html lang ="en ">
3
-
4
- {% load static %}
5
-
6
- < head >
7
- < title > Daniel Damkoehler dot net</ title >
8
- < link href ="https://fonts.googleapis.com/css?family=Roboto:400,700 " rel ="stylesheet ">
9
- < meta name ="google " content ="notranslate " />
5
+ < head >
6
+ < title > Daniel Damkoehler dot net</ title >
10
7
< meta charset ="UTF-8 " />
11
8
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
12
- < link rel ="stylesheet " href ="{% static 'css/style.css' %} " />
13
- < link rel ="stylesheet " href ="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css " integrity ="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm "
14
- crossorigin ="anonymous " />
15
- </ head >
9
+ < meta http-equiv ="X-UA-Compatible " content ="ie=edge ">
10
+ {% tailwind_css %}
11
+ </ head >
16
12
17
- < body >
18
- <!-- Navigation -->
13
+ < body class ="bg-slate-300 font-sans leading-normal tracking-normal ">
14
+ < div class ="container w-full bg-blue-300 h-12 grid grid-cols-2 gap-2 ">
15
+ < div class ="items-center "> < h1 > Daniel Damkoehler</ h1 > </ div >
16
+ < div class ="items-center ">
17
+ < nav >
18
+ < div >
19
+ < p > Navigation will go here.</ p >
20
+ </ div >
21
+ </ nav >
22
+ </ div >
23
+ </ div >
24
+ < div class ="container mx-auto ">
25
+ < section class ="flex ">
26
+ {% block content %}
27
+ <!-- Content Goes here -->
28
+ {% endblock content %}
29
+ </ section >
30
+ <!-- <!– Navigation –>
19
31
<nav class="navbar navbar-expand-lg navbar-light bg-light shadow" id="mainNav">
20
32
<div class="container-fluid">
21
33
<a class="navbar-brand" href="{% url 'home' %}">daniel damkoehler</a>
37
49
</ul>
38
50
</div>
39
51
</div>
40
- </ nav >
41
- {% block content %}
42
- <!-- Content Goes here -->
43
- {% endblock content %}
52
+ </nav>-->
53
+ </ div >
54
+
44
55
<!-- Footer -->
45
56
< footer class ="py-3 bg-grey ">
46
57
< p class ="m-0 text-dark text-center "> Copyright © Daniel Damkoehler</ p >
47
58
</ footer >
48
- </ body >
59
+ </ body >
49
60
</ html >
0 commit comments