|
1 |
| -<link id="fa-stylesheet" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@latest/css/all.min.css"> |
2 |
| - |
3 | 1 | <footer class="site-footer h-card">
|
4 | 2 | <data class="u-url" value="{{ '/' | relative_url }}"></data>
|
5 | 3 |
|
6 | 4 | <div class="wrapper">
|
7 | 5 |
|
8 |
| - <div class="footer-col-wrapper"> |
9 |
| - <div class="footer-col"> |
10 |
| - {%- if site.author %} |
11 |
| - <ul class="contact-list"> |
12 |
| - {% if site.author.name -%} |
13 |
| - <li class="p-name">{{ site.author.name | escape }}</li> |
14 |
| - {% endif -%} |
15 |
| - {% if site.author.email -%} |
16 |
| - <li><a class="u-email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li> |
17 |
| - {%- endif %} |
18 |
| - </ul> |
19 |
| - {%- endif %} |
20 |
| - </div> |
21 |
| -<!-- |
22 |
| - <div class="footer-col"> |
23 |
| - <p>{{ site.description | escape }}</p> |
24 |
| - </div> |
25 |
| ---> |
26 |
| - </div> |
27 |
| - |
28 | 6 | <div class="social-links">
|
29 | 7 | {%- include social.html -%}
|
30 | 8 | </div>
|
31 | 9 |
|
32 |
| - <div class="footer-bottom"> |
33 |
| - <p class="copyright">© {{ site.time | date: "%Y" }} {{ site.title | escape }}</p> |
34 |
| - </div> |
| 10 | + <div class="footer-bottom"> |
| 11 | + <p class="copyright"> |
| 12 | + © {{ site.time | date: "%Y" }} |
| 13 | + {% for author in site.authors %} |
| 14 | + {{ author.name | escape }}{% unless forloop.last %}, {% endunless %} |
| 15 | + {% endfor %} |
| 16 | + </p> |
| 17 | + |
| 18 | + <div class="license-info"> |
| 19 | + <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"> |
| 20 | + <img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /> |
| 21 | + </a> |
| 22 | + <br> |
| 23 | + <p> |
| 24 | + The content on this site is licensed under a |
| 25 | + <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>. |
| 26 | + </p> |
| 27 | + </div> |
| 28 | + |
| 29 | + {% if site.repository_url %} |
| 30 | + <div class="repository-info"> |
| 31 | + <p> |
| 32 | + Found a bug or have a suggestion? Welcome your contribution! <a href="{{ site.repository_url }}">GitHub Repository</a> |
| 33 | + </p> |
| 34 | + </div> |
| 35 | + {% endif %} |
| 36 | + </div> |
35 | 37 |
|
36 | 38 | </div>
|
37 | 39 |
|
|
0 commit comments