1- < footer class ="d-flex w-100 justify-content-center ">
2- < div class ="d-flex justify-content-between align-items-center ">
3- < div class ="footer-left ">
4- < p class ="mb-0 ">
5- © {{ 'now' | date: "%Y" }}
6- < a href ="{{ site.social.links[0] }} "> {{ site.social.name }}</ a > .
7- < span data-toggle ="tooltip " data-placement ="top " title ="{{ site.data.locales[site.lang].copyright.brief_description }} ">
8- {{ site.data.locales[site.lang].copyright.label }}
9- </ span >
10- </ p >
11- </ div >
1+ <!-- The Footer -->
122
13- < div class ="footer-right ">
14- < p class ="mb-0 ">
15- {{ site.data.locales[site.lang].footer.powered_by | replace: ':jekyll', '< a href ="https://jekyllrb.com " target ="_blank " rel ="noopener "> Jekyll</ a > ' | replace: ':theme', '< a href ="https://github.com/cotes2020/jekyll-theme-chirpy " target ="_blank " rel ="noopener "> Chirpy</ a > ' }}
16- </ p >
17- </ div >
18- </ div >
3+ < footer
4+ aria-label ="Site Info "
5+ class ="
6+ d-flex flex-column justify-content-center text-muted
7+ flex-lg-row justify-content-lg-between align-items-lg-center pb-lg-3
8+ "
9+ >
10+ < p >
11+ {{- '©' }}
12+ < time > {{ 'now' | date: '%Y' }}</ time >
13+
14+ {% if site.social.links %}
15+ < a href ="{{ site.social.links[0] }} "> {{ site.social.name }}</ a > .
16+ {% else %}
17+ < em class ="fst-normal "> {{ site.social.name }}</ em > .
18+ {% endif %}
19+
20+ {% if site.data.locales[include.lang].copyright.brief %}
21+ < span
22+ data-bs-toggle ="tooltip "
23+ data-bs-placement ="top "
24+ title ="{{ site.data.locales[include.lang].copyright.verbose }} "
25+ >
26+ {{- site.data.locales[include.lang].copyright.brief -}}
27+ </ span >
28+ {% endif %}
29+ </ p >
30+
31+ < p >
32+ {%- capture _platform -%}
33+ < a href ="https://jekyllrb.com " target ="_blank " rel ="noopener "> Jekyll</ a >
34+ {%- endcapture -%}
35+
36+ {%- capture _theme -%}
37+ < a
38+ data-bs-toggle ="tooltip "
39+ data-bs-placement ="top "
40+ title ="v{{ theme.version }} "
41+ href ="https://github.com/cotes2020/jekyll-theme-chirpy "
42+ target ="_blank "
43+ rel ="noopener "
44+ > Chirpy</ a >
45+ {%- endcapture -%}
46+
47+ {{ site.data.locales[include.lang].meta | replace: ':PLATFORM', _platform | replace: ':THEME', _theme }}
48+ </ p >
1949</ footer >
0 commit comments