We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13617de commit 53b61b0Copy full SHA for 53b61b0
_config.yml
@@ -23,6 +23,13 @@ social:
23
plugins:
24
- jekyll-seo-tag
25
26
+# Jekyll이 Blazor 프로젝트의 마크다운/빌드 산출물까지 페이지로 처리하지 않도록 제외
27
+exclude:
28
+ - src/**/bin/**
29
+ - src/**/obj/**
30
+ - src/**/Pages/**
31
+ - src/**/wwwroot/**/*.md
32
+
33
# 글로벌 설정
34
defaults:
35
-
_includes/footer.html
@@ -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
@@ -0,0 +1,7 @@
+ <header class="inner">
+ <p>
+ <a href="{{ '/' | relative_url }}">{{ site.title | default: site.github.repository_name }}</a>
+ </p>
6
+ </header>
7
0 commit comments