updating footer, fixing typo
This commit is contained in:
parent
bbc0e4e16a
commit
157d793c85
13
_config.yml
13
_config.yml
|
@ -1,11 +1,9 @@
|
||||||
# Site wide configuration
|
# Site wide configuration
|
||||||
|
|
||||||
title: Site Title
|
title: Site Title
|
||||||
locale: en_US
|
locale: en_US
|
||||||
logo: # filename of a logo image that has been placed into your images directory
|
logo: # filename of a logo image that has been placed into your images directory
|
||||||
|
|
||||||
# Uncomment the 'yes' below if you would like for a creative commons license to be displayed in the footer of your site.
|
|
||||||
cc: #yes
|
|
||||||
# Enter the following platform usernames if you would like for them to appear on your site.
|
# Enter the following platform usernames if you would like for them to appear on your site.
|
||||||
owner:
|
owner:
|
||||||
name: Your Name
|
name: Your Name
|
||||||
|
@ -42,6 +40,11 @@ owner:
|
||||||
codepen: #username
|
codepen: #username
|
||||||
disqus-shortname:
|
disqus-shortname:
|
||||||
|
|
||||||
|
# NOTE: If you would like your site to be licensed under a creative commons license, uncomment the 'yes' next to the type of license you wish to use.
|
||||||
|
creative-commons:
|
||||||
|
cc-by: #yes
|
||||||
|
cc-by-nc: #yes
|
||||||
|
|
||||||
#DO NOT EDIT BEYOND THIS POINT
|
#DO NOT EDIT BEYOND THIS POINT
|
||||||
# Jekyll configuration
|
# Jekyll configuration
|
||||||
|
|
||||||
|
|
|
@ -11,10 +11,13 @@
|
||||||
</script>
|
</script>
|
||||||
</div><!-- /.google-ads -->
|
</div><!-- /.google-ads -->
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if site.cc %}
|
{% if site.creative-commons.cc-by %}
|
||||||
<span><a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>{{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="http://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
<span><a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="http://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
||||||
<br />Based on the <a href="https://mmistakes.github.io/minimal-mistakes/">Minimal Mistakes</a> theme developed by Michael Rose.</span>
|
<br /></span>
|
||||||
|
{% elsif site.creative-commons.cc-by-nc %}
|
||||||
|
<span><a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="http://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
||||||
|
<br /></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="http://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
<span>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="http://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
||||||
<br />Based on the <a href="https://mmistakes.github.io/minimal-mistakes/">Minimal Mistakes</a> theme developed by Michael Rose.</span>
|
<br /></span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -635,6 +635,7 @@ $button-size: 1.5rem;
|
||||||
@include clearfix;
|
@include clearfix;
|
||||||
clear: both;
|
clear: both;
|
||||||
padding-bottom: 3em;
|
padding-bottom: 3em;
|
||||||
|
text-align: center;
|
||||||
a,
|
a,
|
||||||
a:active,
|
a:active,
|
||||||
a:visited,
|
a:visited,
|
||||||
|
|
Loading…
Reference in New Issue