forked from uva-math/uva-math-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
76 lines (60 loc) · 2.44 KB
/
error.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
events: true
permalink: /error.html
# no layout since it's a main page with special navbar that is not be repeated
# nav_id: Home
# nav_weight: 10
# nav_nesting: true
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error Page and Site Map | Mathematics at the University of Virginia</title>
{% include main_header.html %}
</head>
<body>
{% include top_brand.html %} {% include navbar.html %}
<div class="container">
<div class="list-group-sm">
<h1 class="list-group-item mt-4 mb-4 orange-item">Sorry, the page you requested does not exist</h1>
</div>
</div>
<hr />
<div class="container">
<div class="row">
<div class="col-md-4">
<h1><Website map></h1>
</div>
<div class="col-md-8">
<br class="hidden-md-up" />
<div class="list-group-lg">
<a class="list-group-item list-group-item-action h3 btn btn-secondary bg-inverse" href="{{site.url}}">Home</a>
<ul class="mt-3">
</ul>
{% assign sorted_pages = site.pages | sort: "nav_weight" %} {% for p in sorted_pages%} {% if p.nav_id != null and p.nav_nesting != true and p.nav_parent == null %}
<a class="list-group-item list-group-item-action h3 btn btn-secondary bg-inverse" href="{{site.url}}{{p.url}}">{{ p.nav_id }}</a>
<ul class="mt-3">
</ul>
{% endif %} {% if p.nav_id != null and p.nav_nesting == true and p.nav_parent == null %}
<a class="list-group-item list-group-item-action h3 btn btn-secondary bg-inverse" href="{{site.url}}{{p.url}}">
{{p.nav_id}}
</a>
<ul class="mt-3">
{% for pp in sorted_pages%} {% if pp.nav_id != null and pp.nav_parent == p.nav_id %}
<li>
<a class="h5" href="{{site.url}}{{pp.url}}">{{pp.nav_id}}</a>
</li> {% endif %} {% endfor %} {% if p.nav_id == "Seminars" %} {% assign sorted_sem = site.data.seminars | sort: "seminar_weight" %} {% for sem in sorted_sem %}
<li>
<a class="h5" href="{{site.url}}/seminars/{{sem.shortname}}">{{sem.name}}</a>
</li>
{% endfor %} {% endif %}
</ul>
{% endif %} {% endfor %}
</div>
</div>
</div>
</div>
{% include footer.html %} {%unless page.math == false %}{% include katex %}{% include mathjax %}{%endunless%} {% include bootjs %}
{% include google-analytics.html %}{% include UVA_fonts.html %}
</body>
</html>