Skip to content

Commit 53b61b0

Browse files
committed
feat: Add header and footer includes for improved site structure
1 parent 13617de commit 53b61b0

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ social:
2323
plugins:
2424
- jekyll-seo-tag
2525

26+
# Jekyll이 Blazor 프로젝트의 마크다운/빌드 산출물까지 페이지로 처리하지 않도록 제외
27+
exclude:
28+
- src/**/bin/**
29+
- src/**/obj/**
30+
- src/**/Pages/**
31+
- src/**/wwwroot/**/*.md
32+
2633
# 글로벌 설정
2734
defaults:
2835
-

_includes/footer.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<div class="outer">
2+
<footer class="inner">
3+
<p>© {{ site.time | date: '%Y' }} {{ site.author | default: site.github.owner_name }}</p>
4+
</footer>
5+
</div>

_includes/header.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<div class="outer">
2+
<header class="inner">
3+
<p>
4+
<a href="{{ '/' | relative_url }}">{{ site.title | default: site.github.repository_name }}</a>
5+
</p>
6+
</header>
7+
</div>

0 commit comments

Comments
 (0)