_includes/footer.html in jekyll-theme-neysa-0.1.5 vs _includes/footer.html in jekyll-theme-neysa-0.1.6
- old
+ new
@@ -1,10 +1,23 @@
-<footer class="inner">
- {% if site.github.is_project_page %}
- <p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
- {% endif %}
- <p>Published with <a href="https://pages.github.com">GitHub Pages</a>
- © Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.last_name }} | Last updated: {{ "now" | date: '%B %d, %Y' }}</p>
-
-</footer>
-
-
+<footer class="inner">
+ <!-- For checkbox setting -->
+ <script type="text/javascript">
+ var inputs = document.getElementsByTagName('input');
+ for (var i=0; i<inputs.length; i++) {
+ if (inputs[i].type == 'checkbox') {
+ if (inputs[i].checked == false){
+ inputs[i].disabled = false;
+ }
+ }
+ }
+ </script>
+
+ <!-- Foot note -->
+ {% if site.github.is_project_page %}
+ <p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="https://ni-chen.github.io">Ni Chen</a> | Last updated: {{ "now" | date: '%B %d, %Y' }} </p>
+ {% else %}
+ <p> © Copyright {{ site.time | date: '%Y' }} <a href="https://ni-chen.github.io">Ni Chen</a> | Last updated: {{ "now" | date: '%B %d, %Y' }} </p>
+ {% endif %}
+
+</footer>
+
+