Skip to content

Commit

Permalink
Updated dates in templates to 2018
Browse files Browse the repository at this point in the history
Use of <time> for copyright date doesn't need to use `datetime`
Prep for version 1.7.2 release
  • Loading branch information
idevlin committed Apr 23, 2018
1 parent 4d7c31b commit 30e894b
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
###v1.7.2 (23rd April 2018)

- Upgraded to normalize.css v8.0.0
- Updated dates in templates to 2018
- Use of <time> for copyright date doesn't need to use `datetime`

###v1.7.1 (30th April 2016)

- Added `shrink-to-fit=no` to viewports for iOS9 (thank you Patrick Lauke)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "html5bones",
"version": "1.6.5"
"version": "1.7.2"
}
2 changes: 1 addition & 1 deletion clean-templates/main-template-no-comments.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1>Main Title</h1>
<address>
<p>For further information, please contact <a href="mailto:admin@example.com">Max Mustermann</a>.</p>
</address>
<small>Copyright &copy; <time datetime="2016">2016</time></small>
<small>Copyright &copy; <time>2018</time></small>
</footer>

</body>
Expand Down
4 changes: 2 additions & 2 deletions main-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ <h3>Did you know?</h3>
<p>For further information, please contact <a href="mailto:admin@example.com">Max Mustermann</a>.</p>
</address>

<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2016' is a date -->
<small>Copyright &copy; <time datetime="2018">2018</time></small>
<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2018' is a date -->
<small>Copyright &copy; <time>2018</time></small>

</footer>

Expand Down
4 changes: 2 additions & 2 deletions multimedia/audio.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
<p>For further information, please contact <a href="mailto:admin@example.com">Max Mustermann</a>.</p>
</address>

<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2016' is a date -->
<small>Copyright &copy; <time datetime="2016">2016</time></small>
<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2018' is a date -->
<small>Copyright &copy; <time>2018</time></small>

</footer>

Expand Down
4 changes: 2 additions & 2 deletions multimedia/video-with-subtitles.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
<p>For further information, please contact <a href="mailto:admin@example.com">Max Mustermann</a>.</p>
</address>

<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2016' is a date -->
<small>Copyright &copy; <time datetime="2016">2016</time></small>
<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2018' is a date -->
<small>Copyright &copy; <time>2018</time></small>

</footer>

Expand Down
4 changes: 2 additions & 2 deletions multimedia/video.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
<!-- ARIA: the landmark role "contentinfo" is added here as it contains metadata that applies to the parent document -->
<footer role="contentinfo">

<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2016' is a date -->
<small>Copyright &copy; <time datetime="2016">2016</time></small>
<!-- Copyright information can be contained within the <small> element. The <time> element is used here to indicate that the '2018' is a date -->
<small>Copyright &copy; <time>2018</time></small>

</footer>

Expand Down

0 comments on commit 30e894b

Please sign in to comment.