comparison _layouts/default.html @ 288:2e13395adcc0

Major design change, footer, texts.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Sun, 29 May 2022 01:25:16 +0900
parents 5e56e2942f22
children 8da97b471f16
comparison
equal deleted inserted replaced
287:7b528322279e 288:2e13395adcc0
68 </div> 68 </div>
69 </div> 69 </div>
70 </div> 70 </div>
71 </div> 71 </div>
72 72
73 <div class="grid-container grid-container-mod"> 73 <div class="white">
74 <div class="grid-container grid-container-mod">
74 75
75 {{ content }} 76 {{ content }}
76 77
77 <footer class="text-center"> 78 <script>
79 $(document).foundation();
80 </script>
81 </div>
82 </div>
83
84 <footer>
85 <div class="grid-container grid-container-mod">
86 <ul class="dropdown menu" data-dropdown-menu>
87 {%- for page in site.pages -%}
88 {%- if page.footer -%}
89 <li>
90 <a href="{{ page.url | relative_url }}">{{ page.icon }}
91 {{ page.title }}
92 </a>
93 </li>
94 {%- endif -%}
95 {%- endfor -%}
96 </ul>
97 &nbsp;
78 <p> 98 <p>
79 Octave is free software under the
80 <a href="{{ "license.html" | relative_url }}">GNU General Public License.</a>
81 </p>
82 <small>
83 Copyright © 1998-{{ site.time | date: "%Y" }} John W. Eaton. 99 Copyright © 1998-{{ site.time | date: "%Y" }} John W. Eaton.
84 This work is licensed under a 100 This work is licensed under a
85 <a rel="license" href="https://creativecommons.org/licenses/by-nd/4.0/"> 101 <a rel="license" href="https://creativecommons.org/licenses/by-nd/4.0/">
86 Creative Commons Attribution-NoDerivatives 4.0 International License</a>. 102 Creative Commons Attribution-NoDerivatives 4.0 International License</a>.
87 Get the <a href="http://hg.octave.org/web-octave/file/tip">page sources</a>. 103 Get the <a href="http://hg.octave.org/web-octave/file/tip">page sources</a>.
88 </small> 104 </p>
89 <p></p> 105 </div>
90 </footer> 106 </footer>
91
92 <script>
93 $(document).foundation();
94 </script>
95 </div>
96 107
97 </body> 108 </body>
98 109
99 </html> 110 </html>