blob: 9c1d6d49ebac65bd24e82c5c56fce548643a849e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }} - Sanders Technology Group</title>
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
</head>
<body>
<div id="Main">
{% include nav.html %}
{{ content }}
{% include footer.html %}
</div>
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
</body>
</html>
|