Skip to content

Commit

Permalink
docs(docs): Revert removal of footer div tag
Browse files Browse the repository at this point in the history
Put it back to match look of existing site
  • Loading branch information
plroebuck committed Mar 4, 2019
1 parent 1316df3 commit 40ffe4f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 19 deletions.
36 changes: 19 additions & 17 deletions docs/_includes/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,25 @@ <h1>
<main id="content">{{ content }}</main>

<footer>
<a rel="home" href="https://mochajs.org/">mochajs.org</a>
is licensed under a
<a
rel="license external noopener"
href="https://creativecommons.org/licenses/by/4.0/">
Creative Commons Attribution 4.0 International License
</a>.
<dl class="dl-inline last-modified">
<dt>Last updated</dt>
<dd>
<time
itemprop="lastModified"
datetime="{{ 'now' | date: '%Y-%m-%dT%H:%M:%SZ' }}">
{{ 'now' | date: '%a %b %d %H:%M:%S %Y' }}
</time>
</dd>
</dl>
<div>
<a rel="home" href="https://mochajs.org/">mochajs.org</a>
is licensed under a
<a
rel="license external noopener"
href="https://creativecommons.org/licenses/by/4.0/">
Creative Commons Attribution 4.0 International License</a
>.
<dl class="dl-inline last-modified">
<dt>Last updated</dt>
<dd>
<time
itemprop="lastModified"
datetime="{{ 'now' | date: '%Y-%m-%dT%H:%M:%SZ' }}">
{{ 'now' | date: '%a %b %d %H:%M:%S %Y' }}
</time>
</dd>
</dl>
</div>
</footer>
</body>
</html>
7 changes: 5 additions & 2 deletions docs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,14 @@ img.screenshot {
footer {
background-color: #eee;
border-top: 1px solid #ddd;
padding: 50px 0;
text-align: right;
}

footer div {
color: #888;
font-size: 0.8em;
margin-right: 30px;
padding: 50px 0;
text-align: right;
}

.last-modified {
Expand Down

0 comments on commit 40ffe4f

Please sign in to comment.