-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExampleWebpageOmittingUnderscore.html
162 lines (162 loc) · 11.9 KB
/
ExampleWebpageOmittingUnderscore.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Example Webpage Omitting Underscore</title>
<style type="text/css">
:root { --page-background-color: #ebebeb;
--navbar-background-color: #333;
--navbar-font-color: white;
--navbar-hover-background-color: red;
--navbar-hover-font-color: white;
--folder-background-color: #d6d6d6;
--file-background-color: #3F3F3F;
}
* { box-sizing: border-box; margin: 0px; padding: 0px; background-color: var(--page-background-color); }
body { min-width: 300px; }
nav { background-color: var(--navbar-background-color); top: 0; width: 100%; display: flex; align-items: center; flex-wrap: wrap; min-width: 300px; }
nav a { float: left; font-family: Helvetica; font-size: 16px; text-align: center; padding: 14px 16px; text-decoration: none; height: 100%; }
.dropdown { float: left; overflow:hidden; position: static; }
.dropdown .dropbtn { font-size: 16px; border: none; outline: none; color: var(--navbar-font-color); padding: 14px 16px; background-color: var(--navbar-background-color); font-family: Helvetica }
nav a:hover, .dropdown:hover .dropbtn, .dropdown-content a:hover { background-color: var(--navbar-hover-background-color); color: var(--navbar-hover-font-color);}
.dropdown-content { display: none; position: absolute; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; overflow: auto; max-height: 50vh; }
.dropdown-content a, .dropdown-content a { float: none; color: black; padding: 12px 16px; font-family: Helvetica; text-decoration: none; display: block; text-align: left; }
.dropdown:hover .dropdown-content { display: block; }
#searchBar { min-width: 50%; font-family: times; font-size: 16px; text-align: left; padding: 14px 16px; text-decoration: none; flex-grow: 1;}
main { color:black; margin-top: 80px; padding: 1rem; overflow-wrap: break-word; }
h1 { font-size: 3rem;}
h2 { padding-top: 10px; display: block; background-color: var(--folder-background-color); font-size: 1.2rem; border-bottom: 1px solid; border-color: #3F3F3F; }
.library-folder { margin: 0px 0px 10px 10px; }
h3 { border-bottom: 1px solid; border-color: var(--file-background-color); padding: 0.2rem 0 0.2rem 0; font-size: 1rem; margin-left: 16px;}
h3:hover { background-color: var(--folder-background-color); }
h3 a { background-color: transparent; }
.library-folder, h3 { max-width: 50vw; min-width: 400px; }
.hidden { display: none; }
</style>
</head>
<body>
<div style="position: fixed; top: 0px; width: 100%;">
<nav>
<div class="dropdown">
<button class="dropbtn">Tags</button>
<div class="dropdown-content">
<div style="float: left;">
<a href="#" onClick="showTaggedReferencesOnly('docs', 'Docs')">Docs</a>
<a href="#" onClick="showTaggedReferencesOnly('sample', 'Sample')">Sample</a>
<a href="#" onClick="showTaggedReferencesOnly('webpages', 'Webpages')">Webpages</a>
</div>
</div>
</div>
<div class="dropdown">
<button class="dropbtn" onclick="showAllReferences()">Show All</button>
</div>
<input type="text" id="searchBar" onkeyup="filterRecords()" placeholder="Search for reference...">
</nav>
</div>
<main>
<h1>Example Webpage Omitting Underscore<span id="pageTitleTag"></span></h1>
<h3 data-Sample=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Sample File 1.txt">Sample File 1.txt</a></h3>
<h3 data-Sample=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Sample File 2.txt">Sample File 2.txt</a></h3>
<h3 data-Sample=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Sample File 3.txt">Sample File 3.txt</a></h3>
<div class="library-folder">
<h2 id="h2-Contacts">Contacts</h2>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\My Phone.txt">My Phone.txt</a></h3>
<div class="library-folder">
<h2 id="h2-Business Contacts">Business Contacts</h2>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 1.txt">Contact 1.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 2.txt">Contact 2.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 3.txt">Contact 3.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 4.txt">Contact 4.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 5.txt">Contact 5.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 6.txt">Contact 6.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Contacts\Business Contacts\Contact 7.txt">Contact 7.txt</a></h3>
</div>
</div>
<div class="library-folder">
<h2 id="h2-Documents">Documents</h2>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Documents\Document 1.txt">Document 1.txt</a></h3>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Documents\Document 2.txt">Document 2.txt</a></h3>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Documents\Document 3.txt">Document 3.txt</a></h3>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Documents\Document 4.txt">Document 4.txt</a></h3>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Documents\Document 5.txt">Document 5.txt</a></h3>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Documents\Document 6.txt">Document 6.txt</a></h3>
</div>
<div class="library-folder">
<h2 id="h2-My Publications">My Publications</h2>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\My Publications\Publication 1.txt">Publication 1.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\My Publications\Publication 2.txt">Publication 2.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\My Publications\Publication 3.txt">Publication 3.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\My Publications\Publication 4.txt">Publication 4.txt</a></h3>
<h3><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\My Publications\Publication 5.txt">Publication 5.txt</a></h3>
</div>
<div class="library-folder">
<h2 id="h2-Pictures">Pictures</h2>
<h3 data-Docs=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Pictures\New Text Document.txt">New Text Document.txt</a></h3>
<div class="library-folder">
<h2 id="h2-Empty Folder">Empty Folder</h2>
</div>
</div>
<div class="library-folder">
<h2 id="h2-Website">Website</h2>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\checkout.css">checkout.css</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\checkout.html">checkout.html</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\index.css">index.css</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\index.html">index.html</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\index.js">index.js</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\index2.html">index2.html</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\main.css">main.css</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\script1.js">script1.js</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\shopping.html">shopping.html</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\testing.js">testing.js</a></h3>
<h3 data-Webpages=""><a href= "C:\Users\mslas\Google Drive\LMD\Excel-File-Cataloger\Sample Data Set\Website\variables.css">variables.css</a></h3>
</div>
<footer style="margin-top: 30px;">This webpage was last rebuilt on 3/28/2022. To request changes, <a href="mailto:[email protected]?subject=Update Request for Example Webpage Omitting Underscore"> contact the administrator</a>.</footer>
</main>
<script>
const libraryList = document.querySelector('main').querySelectorAll('.library-folder')
const pageTitleTag = document.getElementById('pageTitleTag')
const recordList = document.querySelector('main').querySelectorAll(`h3`)
let currentTag = null
hideEmptyFolders()
function filterRecords() {
let filter = document.getElementById('searchBar').value.toUpperCase();
recordList.forEach(record => {
if (currentTag ? (record.hasAttribute(`data-${currentTag}`)) && record.querySelector('a').text.toUpperCase().indexOf(filter) > -1 : record.querySelector('a').text.toUpperCase().indexOf(filter) > -1) {
record.classList.remove('hidden')
} else {
record.classList.add('hidden')
}
})
hideEmptyFolders()
}
function hideEmptyFolders() {
let visibleCount = 0
libraryList.forEach(folder => {
visibleCount = 0
folder.querySelectorAll('h3').forEach(record => {
if (!record.classList.contains('hidden')) {visibleCount++}
})
if (visibleCount === 0) {
folder.classList.add('hidden')
} else {
folder.classList.remove('hidden')
}
})
}
function showAllReferences() {
document.getElementById('searchBar').value = ''
currentTag = null
pageTitleTag.innerText = ''
filterRecords()
window.scrollTo(0, 0)
}
function showTaggedReferencesOnly(tagCode, displayText) {
pageTitleTag.innerText = ` - ${displayText}`
currentTag = tagCode
filterRecords()
}
</script>
</body>
</html>