Skip to content
This repository was archived by the owner on Sep 15, 2020. It is now read-only.

Commit 30a643d

Browse files
committed
Remove downloads, driver-crash and external-filter-crash pages
1 parent a32b12a commit 30a643d

21 files changed

+25
-754
lines changed

Gruntfile.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ module.exports = function(grunt) {
7777
jqueryJS: {
7878
src: [
7979
'<%= dirs.src %>/assets/js/vendor/jquery.slim.min.js',
80-
'<%= dirs.src %>/assets/js/vendor/bootstrap.js',
81-
'<%= dirs.src %>/assets/js/downloads.js'
80+
'<%= dirs.src %>/assets/js/vendor/bootstrap.js'
8281
],
8382
dest: '<%= dirs.dest %>/assets/js/jquery-pack.js'
8483
},
@@ -87,7 +86,6 @@ module.exports = function(grunt) {
8786
'<%= dirs.src %>/assets/js/vendor/plugins.js',
8887
'<%= dirs.src %>/assets/js/vendor/baguetteBox.js',
8988
'<%= dirs.src %>/assets/js/baguetteBox-init.js',
90-
'<%= dirs.src %>/assets/js/detect-os.js',
9189
'<%= dirs.src %>/assets/js/img-defer.js',
9290
'<%= dirs.src %>/assets/js/no-js-class.js',
9391
'<%= dirs.src %>/assets/js/google-analytics.js'
@@ -281,7 +279,8 @@ module.exports = function(grunt) {
281279
},
282280
files: [
283281
'<%= dirs.dest %>/**/*.html',
284-
'!<%= dirs.dest %>/contact-us/index.html'
282+
'!<%= dirs.dest %>/contact-us/index.html',
283+
'!<%= dirs.dest %>/downloads/index.html'
285284
]
286285
},
287286

bootstrap-customizer-config.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,6 @@
399399
"alerts.less",
400400
"list-group.less",
401401
"panels.less",
402-
"wells.less",
403-
"close.less",
404402
"component-animations.less"
405403
],
406404
"js": [

icomoon-selection.json

Lines changed: 11 additions & 229 deletions
Large diffs are not rendered by default.

source/_includes/footer.html

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<footer>
22
<div class="container">
33
<div class="row">
4-
<div class="col-xs-12 col-sm-3 footer-left">
4+
<div class="col-xs-12 col-sm-4 footer-left">
55
<h3>Follow us on</h3>
66

77
<ul class="social-ul list-inline">
@@ -37,7 +37,7 @@ <h3>Follow us on</h3>
3737
</div>
3838

3939
<!--googleoff: all-->
40-
<div class="col-xs-12 col-sm-3 footer-center cloudvps">
40+
<div class="col-xs-12 col-sm-4 footer-center cloudvps">
4141
<p>
4242
Server sponsored by:<br>
4343
<em><a href="https://www.cloudvps.com/" target="_blank" rel="noopener">CloudVPS</a> - Private Cloud, Clusters &amp; VPS</em>
@@ -46,18 +46,9 @@ <h3>Follow us on</h3>
4646
<img src="/assets/img/cloudvps_small.png" width="100" height="70" title="CloudVPS - Private Cloud, Clusters &amp; VPS" alt="CloudVPS logo">
4747
</a>
4848
</div>
49-
50-
<div class="col-xs-12 col-sm-3 footer-center stackpath">
51-
<p>
52-
Binaries powered by <a href="https://www.stackpath.com/" target="_blank" rel="noopener">StackPath</a>
53-
</p>
54-
<a href="https://www.stackpath.com/" title="StackPath" target="_blank" rel="noopener">
55-
{% include stackpath-monogram-reversed-screen.svg %}
56-
</a>
57-
</div>
5849
<!--googleon: all-->
5950

60-
<div class="col-xs-12 col-sm-3 footer-right">
51+
<div class="col-xs-12 col-sm-4 footer-right">
6152
<p>Site last updated on <time class="last-updated" datetime="{{ site.time | date_to_xmlschema }}" title="{{ site.time | date_to_rfc822 }}">{{ site.time | date_to_long_string }}</time>.</p>
6253
<p>Copyright &copy; 2012-{{ site.time | date: '%Y' }} <a href="/about/">MPC-HC Team</a></p>
6354
</div>

source/_includes/header.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ <h4><span class="fa fa-exclamation-circle" aria-hidden="true"></span> Warning</h
101101
<div class="col-md-9">
102102
<div id="navbar" class="navbar-collapse collapse">
103103
<ul class="nav navbar-nav navbar-left">
104-
<li{% if page.slug == "downloads" %} class="active"{% endif %}><a href="/downloads/"><span class="fa fa-download fa-fw" aria-hidden="true"></span> Downloads</a></li>
105104
<li{% if page.slug == "changelog" %} class="active"{% endif %}><a href="/changelog/"><span class="fa fa-file-text fa-fw" aria-hidden="true"></span> Changelog</a></li>
106105
<li{% if page.slug == "faq" %} class="active"{% endif %}><a href="/faq/"><span class="fa fa-info fa-fw" aria-hidden="true"></span> FAQ</a></li>
107106
<li{% if page.slug == "about" %} class="active"{% endif %}><a href="/about/"><span class="fa fa-users fa-fw" aria-hidden="true"></span> About</a></li>

source/_includes/stackpath-monogram-reversed-screen.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

source/assets/css/style.css

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,6 @@ body {
6565
padding-bottom: 0;
6666
}
6767

68-
.page-downloads .downloads-version {
69-
font-weight: 700;
70-
padding-bottom: 8px;
71-
text-align: center;
72-
}
73-
74-
.page-downloads .well {
75-
padding-top: 3%;
76-
}
77-
78-
.page-downloads .well > h3,
79-
.page-downloads .well > h4 {
80-
margin-top: 0;
81-
text-align: center;
82-
}
83-
8468
.panel-title > .toggleLink::after {
8569
content: "\f077"; /* fa-chevron-up */
8670
float: right;
@@ -277,8 +261,7 @@ footer .list-unstyled li {
277261
color: #fe9900;
278262
}
279263

280-
.cloudvps a,
281-
.stackpath a {
264+
.cloudvps a {
282265
display: inline-block;
283266
}
284267

@@ -452,10 +435,6 @@ h6[id]::before {
452435
text-align: justify;
453436
}
454437

455-
.stackpath p {
456-
margin-bottom: 30px;
457-
}
458-
459438
.footer-left,
460439
.footer-center,
461440
.footer-right {

source/assets/css/vendor/bootstrap.css

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -4351,54 +4351,6 @@ button.list-group-item-danger.active:focus {
43514351
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
43524352
border-bottom-color: #ebccd1;
43534353
}
4354-
.well {
4355-
min-height: 20px;
4356-
padding: 19px;
4357-
margin-bottom: 20px;
4358-
background-color: #f5f5f5;
4359-
border: 1px solid #e3e3e3;
4360-
border-radius: 4px;
4361-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4362-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4363-
}
4364-
.well blockquote {
4365-
border-color: #ddd;
4366-
border-color: rgba(0, 0, 0, 0.15);
4367-
}
4368-
.well-lg {
4369-
padding: 24px;
4370-
border-radius: 6px;
4371-
}
4372-
.well-sm {
4373-
padding: 9px;
4374-
border-radius: 3px;
4375-
}
4376-
.close {
4377-
float: right;
4378-
font-size: 21px;
4379-
font-weight: bold;
4380-
line-height: 1;
4381-
color: #000000;
4382-
text-shadow: 0 1px 0 #ffffff;
4383-
filter: alpha(opacity=20);
4384-
opacity: 0.2;
4385-
}
4386-
.close:hover,
4387-
.close:focus {
4388-
color: #000000;
4389-
text-decoration: none;
4390-
cursor: pointer;
4391-
filter: alpha(opacity=50);
4392-
opacity: 0.5;
4393-
}
4394-
button.close {
4395-
padding: 0;
4396-
cursor: pointer;
4397-
background: transparent;
4398-
border: 0;
4399-
-webkit-appearance: none;
4400-
appearance: none;
4401-
}
44024354
.clearfix:before,
44034355
.clearfix:after,
44044356
.dl-horizontal dd:before,

source/assets/css/vendor/font-awesome.css

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@font-face {
22
font-family: 'FontAwesome';
3-
src: url('../fonts/fontawesome-custom-4.6.3.2.woff') format('woff'), url('../fonts/fontawesome-custom-4.6.3.2.ttf') format('truetype'), url('../fonts/fontawesome-custom-4.6.3.2.svg#fontawesomeregular') format('svg');
3+
src: url('../fonts/fontawesome-custom-4.6.3.3.woff') format('woff'), url('../fonts/fontawesome-custom-4.6.3.3.ttf') format('truetype'), url('../fonts/fontawesome-custom-4.6.3.3.svg#fontawesomeregular') format('svg');
44
font-display: block;
55
font-weight: normal;
66
font-style: normal;
@@ -206,12 +206,6 @@
206206
.fa-chevron-down:before {
207207
content: "\f078";
208208
}
209-
.fa-cogs:before {
210-
content: "\f085";
211-
}
212-
.fa-gears:before {
213-
content: "\f085";
214-
}
215209
.fa-external-link:before {
216210
content: "\f08e";
217211
}
@@ -245,27 +239,15 @@
245239
.fa-sitemap:before {
246240
content: "\f0e8";
247241
}
248-
.fa-cloud-download:before {
249-
content: "\f0ed";
250-
}
251242
.fa-angle-double-left:before {
252243
content: "\f100";
253244
}
254245
.fa-angle-double-right:before {
255246
content: "\f101";
256247
}
257-
.fa-desktop:before {
258-
content: "\f108";
259-
}
260248
.fa-frown-o:before {
261249
content: "\f119";
262250
}
263-
.fa-code:before {
264-
content: "\f121";
265-
}
266-
.fa-question:before {
267-
content: "\f128";
268-
}
269251
.fa-info:before {
270252
content: "\f129";
271253
}
@@ -275,18 +257,6 @@
275257
.fa-archive:before {
276258
content: "\f187";
277259
}
278-
.fa-file-archive-o:before {
279-
content: "\f1c6";
280-
}
281-
.fa-file-zip-o:before {
282-
content: "\f1c6";
283-
}
284-
.fa-paypal:before {
285-
content: "\f1ed";
286-
}
287-
.fa-cc-paypal:before {
288-
content: "\f1f4";
289-
}
290260
.fa-user-times:before {
291261
content: "\f235";
292262
}
-9.47 KB
Binary file not shown.

0 commit comments

Comments
 (0)