-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
sitemap.html
executable file
·133 lines (107 loc) · 2.31 KB
/
sitemap.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>wpaudit.site Sitemap</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<style type="text/css">
body {
background-color: #fff;
font-family: "Helvetica", "Arial", sans-serif;
margin: 0;
}
#top {
background-color: #b1d1e8;
font-size: 16px;
padding-bottom: 40px;
}
nav {
font-size: 24px;
margin: 0px 30px 0px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
background-color: #f3f3f3;
color: #666;
box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
padding: 10px 0;
text-align: center;
z-index: 1;
}
h3 {
margin: auto;
padding: 10px;
max-width: 600px;
color: #666;
}
h3 span {
float: right;
}
h3 a {
font-weight: normal;
display: block;
}
#cont {
position: relative;
border-radius: 6px;
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
background: #f3f3f3;
margin: -20px 30px 0px 30px;
padding: 20px;
}
a:link,
a:visited {
color: #0180AF;
text-decoration: underline;
}
a:hover {
color: #666;
}
#footer {
padding: 10px;
text-align: center;
}
ul {
margin: 0px;
padding: 0px;
list-style: none;
}
li {
margin: 0px;
}
li ul {
margin-left: 20px;
}
.lhead {
background: #ddd;
padding: 10px;
margin: 10px 0px;
}
.lcount {
padding: 0px 10px;
}
.lpage {
border-bottom: #ddd 1px solid;
padding: 5px;
}
.last-page {
border: none;
}
</style>
</head>
<body>
<div id="top">
<nav>wpaudit.site HTML Site Map</nav>
<h3>
<span>Last updated: 2019, November 12<br />
Total pages: 2</span>
<a href="https://wpaudit.site">wpaudit.site Homepage</a>
</h3></div>
<div id="cont">
<ul class="level-0">
<li class="lhead">/ <span class="lcount">2 pages</span></li>
<li class="lpage"><a href="https://wpaudit.site/" title="WPAudit – WordPress Website Audit Checklist">WPAudit – WordPress Website Audit Checklist</a></li>
<li class="lpage last-page"><a href="https://wpaudit.site/audit.html" title="WPAudit – WordPress Website Audit Checklist">WPAudit – WordPress Website Audit Checklist</a></li>
</ul>
</div>
</body>
</html>