Skip to content

Commit edee8fa

Browse files
Merge pull request #1 from secondl1ght/secondl1ght-edits
Semantic, accessibility, styling and DRY improvements
2 parents 55bb8f0 + 435b421 commit edee8fa

File tree

6 files changed

+429
-440
lines changed

6 files changed

+429
-440
lines changed

about.html

Lines changed: 74 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,78 @@
11
<!DOCTYPE html>
22
<html lang="en" dir="ltr">
3-
<head>
4-
<!-- Google Tag Manager -->
5-
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
6-
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
7-
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
8-
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
9-
})(window,document,'script','dataLayer','GTM-NWX65X3');</script>
10-
<!-- End Google Tag Manager -->
11-
<meta charset="utf-8" />
12-
<link rel="icon" href="images/favicon.png"/>
13-
<title>About | Many passwords</title>
14-
<meta name="description" content="Many passwords - default passwords for each devices. More about this project.">
15-
<link rel="stylesheet" href="css/normalize.css">
16-
<link rel="stylesheet" href="css/colors.css"/>
17-
<link rel="stylesheet" href="css/style.css"/>
18-
<link
19-
href="https://fonts.googleapis.com/css?family=Montserrat:200,400,800&display=swap"
20-
rel="stylesheet"
21-
/>
22-
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
23-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
24-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
25-
</head>
26-
<body onload="loadEntryCount()" onscroll="check_scroll_button()">
27-
<!-- Google Tag Manager (noscript) -->
28-
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWX65X3"
29-
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
30-
<!-- End Google Tag Manager (noscript) -->
31-
<ul id="navbar">
32-
<li class="selected"><a href="/">Home</a></li>
33-
<li><a href="about.html">About Us</a></li>
34-
<li><a href="https://github.com/many-passwords/many-passwords/blob/main/CONTRIBUTING.md" target="_blank">Contributing</a></li>
35-
<li class="search"><input onkeyup="search_entries()" type="text" placeholder="Search..."></li>
36-
<div class="clear"></div>
37-
</ul>
38-
<div class="container">
39-
<header>
40-
<h1>About us</h1>
41-
</header>
42-
<section class="about">
43-
<p><em>Default password for each devices.</em> 🐱‍💻</p><br>
44-
<p>The purpose of this project is to collect all the default passwords in one place.<br>
45-
Find out how you can contribute to this by checking the <a href="https://github.com/many-passwords/many-passwords/blob/main/CONTRIBUTING.md" target="_blank">CONTRIBUTING.md</a> file.</p>
46-
</section>
47-
<header>
48-
<h2>Navigation</h2>
49-
</header>
50-
<section class="about">
51-
<p>All passwords you will find in the <a href="https://github.com/many-passwords/many-passwords/blob/main/passwords.csv" target="_blank">passwords.csv</a> file (the data is presented in the form of a table) or on this page.</p><br>
52-
<p>Number of collected default passwords: <code id="count-output">118</code>. 🙂</p>
53-
</section>
54-
<header>
55-
<h2>Contributors</h2>
56-
</header>
57-
<section class="about">
58-
<p>Thank you very much to all contributors for their contribution to this project.<br>
3+
4+
<head>
5+
<!-- Google Tag Manager -->
6+
<script>
7+
(function(w, d, s, l, i) {
8+
w[l] = w[l] || [];
9+
w[l].push({
10+
'gtm.start': new Date().getTime(),
11+
event: 'gtm.js'
12+
});
13+
var f = d.getElementsByTagName(s)[0],
14+
j = d.createElement(s),
15+
dl = l != 'dataLayer' ? '&l=' + l : '';
16+
j.async = true;
17+
j.src =
18+
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
19+
f.parentNode.insertBefore(j, f);
20+
})(window, document, 'script', 'dataLayer', 'GTM-NWX65X3');
21+
</script>
22+
<!-- End Google Tag Manager -->
23+
<meta charset="utf-8" />
24+
<link rel="icon" href="images/favicon.png" />
25+
<title>About | Many passwords</title>
26+
<meta name="description" content="Many passwords - default passwords for each devices. More about this project.">
27+
<link rel="stylesheet" href="css/normalize.css">
28+
<link rel="stylesheet" href="css/colors.css" />
29+
<link rel="stylesheet" href="css/style.css" />
30+
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,400,800&display=swap" rel="stylesheet" />
31+
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
32+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
33+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
34+
</head>
35+
36+
<body onload="loadEntryCount()" onscroll="check_scroll_button()">
37+
<!-- Google Tag Manager (noscript) -->
38+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWX65X3" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
39+
<!-- End Google Tag Manager (noscript) -->
40+
<ul id="navbar">
41+
<li class="selected"><a href="/">Home</a></li>
42+
<li><a href="about.html">About Us</a></li>
43+
<li><a href="https://github.com/many-passwords/many-passwords/blob/main/CONTRIBUTING.md" target="_blank">Contributing</a></li>
44+
<li class="search"><input onkeyup="search_entries()" type="text" placeholder="Search..."></li>
45+
<div class="clear"></div>
46+
</ul>
47+
<div class="container">
48+
<header>
49+
<h1>About us</h1>
50+
</header>
51+
<section class="about">
52+
<p><em>Default password for each devices.</em> 🐱‍💻</p><br>
53+
<p>The purpose of this project is to collect all the default passwords in one place.<br>
54+
Find out how you can contribute to this by checking the <a href="https://github.com/many-passwords/many-passwords/blob/main/CONTRIBUTING.md" target="_blank">CONTRIBUTING.md</a> file.</p>
55+
</section>
56+
<h2>Navigation</h2>
57+
<section class="navigation">
58+
<p>All passwords you will find in the <a href="https://github.com/many-passwords/many-passwords/blob/main/passwords.csv" target="_blank">passwords.csv</a> file (the data is presented in the form of a table) or on this page.</p><br>
59+
<p>Number of collected default passwords: <code id="count-output">118</code>. 🙂</p>
60+
</section>
61+
<h2>Contributors</h2>
62+
<section class="contributors">
63+
<p>Thank you very much to all contributors for their contribution to this project.<br>
5964
You are an important part of this project, without people like you the project would not exist.</p><br>
60-
<p>Special thanks to:</p><br>
61-
<ul>
62-
<li><a href="https://github.com/MarcelCoding">@MarcelCoding</a> - <a href="https://github.com/many-passwords/many-passwords/pull/49">created Github Action</a> which streamlined and accelerated the work;</li><br>
63-
<li><a href="https://github.com/Mpcs">@Mpcs</a> - <a href="https://github.com/many-passwords/many-passwords/pull/41">made very big changes to the project website</a> - change of appearance, grid layout, search bar, navigation bar, About Us page, floating button go to the top, link to repo (contributing button), cleaner code;</li><br>
64-
<li><a href="https://github.com/alenquer">@alenquer</a> - <a href="https://github.com/many-passwords/many-passwords/pull/37">created the first version</a> of the project page.</li>
65-
</ul>
66-
</section>
67-
</div>
68-
<script src="./script.js"></script>
69-
</body>
65+
<p>Special thanks to:</p><br>
66+
<ul>
67+
<li><a href="https://github.com/MarcelCoding">@MarcelCoding</a> - <a href="https://github.com/many-passwords/many-passwords/pull/49">created Github Action</a> which streamlined and accelerated the work;</li><br>
68+
<li><a href="https://github.com/Mpcs">@Mpcs</a> - <a href="https://github.com/many-passwords/many-passwords/pull/41">made very big changes to the project website</a> - change of appearance, grid layout, search bar, navigation bar, About Us
69+
page, floating button go to the top, link to repo (contributing button), cleaner code;</li><br>
70+
<li><a href="https://github.com/alenquer">@alenquer</a> - <a href="https://github.com/many-passwords/many-passwords/pull/37">created the first version</a> of the project page.</li>
71+
</ul>
72+
</section>
73+
<br><br><br><br>
74+
</div>
75+
<script src="./script.js"></script>
76+
</body>
77+
7078
</html>

css/colors.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:root {
2-
--title-color: #A62727;
3-
--background-color: #2A2C2B;
4-
--foreground-color: #374140;
5-
--text-color: #BDC3C7;
6-
--comment-color: #159315;
7-
}
2+
--title-color: #A62727;
3+
--background-color: #2A2C2B;
4+
--foreground-color: #374140;
5+
--text-color: #BDC3C7;
6+
--comment-color: #159315;
7+
}

0 commit comments

Comments
 (0)