11< footer class ="site-footer ">
22 < div class ="container ">
3+ {% assign current_lang = page.lang | default: site.default_lang %}
4+ {% assign lang_data = site.data[current_lang] %}
5+
36 < div class ="footer-content ">
47 < div class ="footer-section ">
5- < h3 > {{ site.title }}</ h3 >
6- < p > {{ site.description }}</ p >
8+ < h3 > {{ lang_data. site.title }}</ h3 >
9+ < p > {{ lang_data. site.description }}</ p >
710 < div class ="social-links ">
811 {% if site.github_username %}
912 < a href ="https://github.com/{{ site.github_username }} " class ="social-link " target ="_blank " rel ="noopener ">
@@ -27,23 +30,48 @@ <h3>{{ site.title }}</h3>
2730 </ div >
2831
2932 < div class ="footer-section ">
30- < h4 > 카테고리 </ h4 >
33+ < h4 > {{ lang_data.footer.categories_title }} </ h4 >
3134 < ul class ="footer-links ">
32- {% assign categories = site.categories | sort %}
33- {% for category in categories limit:5 %}
35+ {% assign lang_categories = '' | split: '' %}
36+ {% for post in site.posts %}
37+ {% assign post_lang = post.lang | default: site.default_lang %}
38+ {% if post_lang == current_lang %}
39+ {% for category in post.categories %}
40+ {% unless lang_categories contains category %}
41+ {% assign lang_categories = lang_categories | push: category %}
42+ {% endunless %}
43+ {% endfor %}
44+ {% endif %}
45+ {% endfor %}
46+ {% assign sorted_categories = lang_categories | sort %}
47+ {% for category in sorted_categories limit:5 %}
3448 < li >
35- < a href ="/categories#{{ category[0] | slugify }} ">
36- {{ category[0] }} ({{ category[1].size }})
49+ {% assign cat_count = 0 %}
50+ {% for post in site.posts %}
51+ {% assign post_lang = post.lang | default: site.default_lang %}
52+ {% if post_lang == current_lang and post.categories contains category %}
53+ {% assign cat_count = cat_count | plus: 1 %}
54+ {% endif %}
55+ {% endfor %}
56+ < a href ="{% if current_lang != site.default_lang %}/{{ current_lang }}{% endif %}/categories#{{ category | slugify }} ">
57+ {{ category }} ({{ cat_count }})
3758 </ a >
3859 </ li >
3960 {% endfor %}
4061 </ ul >
4162 </ div >
4263
4364 < div class ="footer-section ">
44- < h4 > 최근 포스트 </ h4 >
65+ < h4 > {{ lang_data.footer.recent_posts_title }} </ h4 >
4566 < ul class ="footer-links ">
46- {% for post in site.posts limit:5 %}
67+ {% assign lang_posts = '' | split: '' %}
68+ {% for post in site.posts %}
69+ {% assign post_lang = post.lang | default: site.default_lang %}
70+ {% if post_lang == current_lang %}
71+ {% assign lang_posts = lang_posts | push: post %}
72+ {% endif %}
73+ {% endfor %}
74+ {% for post in lang_posts limit:5 %}
4775 < li >
4876 < a href ="{{ post.url | relative_url }} ">
4977 {{ post.title | truncate: 30 }}
@@ -54,23 +82,23 @@ <h4>최근 포스트</h4>
5482 </ div >
5583
5684 < div class ="footer-section ">
57- < h4 > 정보 </ h4 >
85+ < h4 > {{ lang_data.footer.information_title }} </ h4 >
5886 < ul class ="footer-links ">
59- < li > < a href ="{{ '/about' | relative_url }} " > 소개 </ a > </ li >
60- < li > < a href ="{{ '/archive' | relative_url }} " > 아카이브 </ a > </ li >
61- < li > < a href ="{{ '/privacy' | relative_url }} "> 개인정보 처리방침 </ a > </ li >
62- < li > < a href ="{{ '/sitemap.xml' | relative_url }} "> 사이트맵 </ a > </ li >
63- < li > < a href ="{{ '/feed.xml' | relative_url }} "> RSS 피드 </ a > </ li >
87+ < li > < a href ="{% if current_lang != site.default_lang %}/{{ current_lang }}{% endif %}/about " > {{ lang_data.footer.about_link }} </ a > </ li >
88+ < li > < a href ="{% if current_lang != site.default_lang %}/{{ current_lang }}{% endif %}/archive " > {{ lang_data.footer.archive_link }} </ a > </ li >
89+ < li > < a href ="{{ '/privacy' | relative_url }} "> {{ lang_data.footer.privacy_link }} </ a > </ li >
90+ < li > < a href ="{{ '/sitemap.xml' | relative_url }} "> {{ lang_data.footer.sitemap_link }} </ a > </ li >
91+ < li > < a href ="{{ '/feed.xml' | relative_url }} "> {{ lang_data.footer.rss_link }} </ a > </ li >
6492 </ ul >
6593 </ div >
6694 </ div >
6795
6896 < div class ="footer-bottom ">
6997 < div class ="footer-bottom-content ">
70- < p > © {{ 'now' | date: "%Y" }} {{ site.title }}. 모든 권리 보유. </ p >
98+ < p > © {{ 'now' | date: "%Y" }} {{ lang_data. site.title }}. {{ lang_data.footer.copyright }} </ p >
7199 < p >
72100 < a href ="https://jekyllrb.com/ " target ="_blank " rel ="noopener "> Jekyll</ a > 과
73- < a href ="https://pages.github.com/ " target ="_blank " rel ="noopener "> GitHub Pages</ a > 로 제작
101+ < a href ="https://pages.github.com/ " target ="_blank " rel ="noopener "> GitHub Pages</ a > 로 {{ lang_data.footer.powered_by }}
74102 </ p >
75103 </ div >
76104 </ div >
0 commit comments