-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Matomo to website #3765
Add Matomo to website #3765
Changes from 8 commits
13bd8f2
94ced8f
84301b1
e4473da
0d84624
bdbb8ad
5a06953
90dc3a2
db43d76
1fe22f8
68fef8b
c853ab2
3093d33
f0d5fd4
405e827
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<title>{{ page.title }}</title> | ||
<link | ||
rel="preload" | ||
href="https://opencollective.com/static/images/user.svg" | ||
as="image" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="css/normalize.css" /> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<link rel="stylesheet" href="css/prism.css" /> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<title>{{ page.title }}</title> | ||
<link rel="preload" | ||
href="https://opencollective.com/static/images/user.svg" | ||
as="image" | ||
crossorigin="anonymous" /> | ||
<link rel="stylesheet" href="css/normalize.css" /> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<link rel="stylesheet" href="css/prism.css" /> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
|
||
<!--[if lt IE 9]> <script src="js/html5shiv.min.js"></script> <![endif]--> | ||
</head> | ||
<!--[if lt IE 9]> <script src="js/html5shiv.min.js"></script> <![endif]--> | ||
</head> | ||
|
||
<body> | ||
<header id="_header"> | ||
<h1> | ||
<a href="/"> | ||
<img | ||
src="/images/mocha-logo.svg" | ||
alt="Mocha" | ||
width="192" | ||
height="192" | ||
/> | ||
</a> | ||
</h1> | ||
<body> | ||
<header id="_header"> | ||
<h1> | ||
<a href="/"> | ||
<img src="/images/mocha-logo.svg" | ||
alt="Mocha" | ||
width="192" | ||
height="192" /> | ||
</a> | ||
</h1> | ||
|
||
<p id="tag"><em>simple</em>, <em>flexible</em>, <em>fun</em></p> | ||
</header> | ||
<p id="tag"><em>simple</em>, <em>flexible</em>, <em>fun</em></p> | ||
</header> | ||
|
||
<main id="content">{{ content }}</main> | ||
<main id="content">{{ content }}</main> | ||
|
||
<footer> | ||
<span> | ||
<a href="https://mochajs.org">mochajs.org</a> is licensed under a | ||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/" | ||
>Creative Commons Attribution 4.0 International License</a | ||
>. | ||
<p> | ||
<em>Last updated: {{ 'now' | date: '%a %b %d %H:%M:%S %Y' }}</em> | ||
</p></span | ||
> | ||
</footer> | ||
</body> | ||
<aside> | ||
<a href="https://matomo.org/" rel="external noopener" target="_blank"> | ||
<img id="matomoLogo" | ||
class="sponsor-logo" | ||
src="images/matomo-logo.png" | ||
alt="Matomo logo"> | ||
</a> | ||
</aside> | ||
|
||
<footer> | ||
<span> | ||
<a href="https://mochajs.org">mochajs.org</a> is licensed under a | ||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. | ||
<p> | ||
<em>Last updated: {{ 'now' | date: '%a %b %d %H:%M:%S %Y' }}</em> | ||
</p> | ||
</span> | ||
</footer> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -188,6 +188,14 @@ img.screenshot { | |||||
max-width: 100%; | ||||||
} | ||||||
|
||||||
Munter marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
.sponsor-logo { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like this class name is on several adblocker lists. Ghostery put
Suggested change
|
||||||
display: block; | ||||||
margin-left: auto; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Centering will happen elsewhere. See https://github.com/mochajs/mocha/pull/3765/files#r262466444
Suggested change
|
||||||
margin-right: auto; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Centering will happen elsewhere. See https://github.com/mochajs/mocha/pull/3765/files#r262466444
Suggested change
|
||||||
width: 176px; | ||||||
height: 176px; | ||||||
} | ||||||
|
||||||
footer { | ||||||
background-color: #eee; | ||||||
padding: 50px 0; | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these indentations changed?