Colophon
Colophon, as it is in publishing, is a way of conveying the publication date and time and copyright information about current resource.
Contents
Examples
Heads up! Examples provided in templates may use <section>
rather than
<div>
for semantic reasons. Use an appropriate HTML5 section element to suit
your application and structure.
With publishing date
Suitable for use on CMS or other content-centric pages that require the publishing date to be shown.
- Published Sunday, 20 Sep 2015 15:00
- Copyright © 1995 to 2015 James Cook University. All rights reserved.
- ABN 46253211955
<div class="jcu-colophon">
<ul class="list-inline">
<li class="list-inline-item">Published Sunday, 20 Sep 2015 15:00</li>
<li class="list-inline-item">Copyright © 1995 to 2015 James Cook University. All rights reserved.</li>
<li class="list-inline-item">ABN 46253211955</li>
</ul>
</div>
Without publishing date
This suits dynamic applications and other situations whereby a publication date is inapplicable or inappropriate.
- Copyright © 1995 to 2015 James Cook University. All rights reserved.
- ABN 46253211955
<div class="jcu-colophon">
<ul class="list-inline">
<li class="list-inline-item">Copyright © 1995 to 2015 James Cook University. All rights reserved.</li>
<li class="list-inline-item">ABN 46253211955</li>
</ul>
</div>