This repository was archived by the owner on Nov 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
53 lines (52 loc) · 1.49 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Rackspace Filter Center</title>
<script type="text/javascript">
drupalSettings = {
rsSolveLastMod: '123456789',
};
// Setting topic via query string parameter is for dev purposes only.
// Don't do this in production.
window.rsSolveFilterTopic = new URLSearchParams(window.location.search).get('filter') || undefined;
window.Drupal = window.Drupal || {
t: function(s) {
return s;
}
}
</script>
<style type="text/css">
/**
* Overlay styling for dev-purposes only. Don't copy into production.
*/
.solveDevFilterOverlay {
background: #3c3c3c;
bottom: 0;
color: #c8c8c8;
font-size: 0.8em;
padding: 3px 5px;
position: fixed;
right: 0;
}
.solveDevFilterOverlay-link,
.solveDevFilterOverlay-link:hover,
.solveDevFilterOverlay-link:focus {
color: #ffffff;
}
</style>
</head>
<body>
<!-- Overlay for dev-purposes only. Don't copy into production. -->
<div class="solveDevFilterOverlay">
<a class="solveDevFilterOverlay-link" href="/">Overview</a>
|
<a class="solveDevFilterOverlay-link" href="/?filter=268">Category</a>
|
<a class="solveDevFilterOverlay-link" href="/?filter=1117">Podcast</a>
</div>
<!-- /Overlay -->
<div id="rsSolve"></div>
</body>
</html>