File tree Expand file tree Collapse file tree 4 files changed +35
-0
lines changed
Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 3535 JEKYLL_ENV : production
3636 run : bundle exec jekyll build
3737
38+ - name : Assert no GitHub Pages base path in output
39+ run : |
40+ if grep -R "/pages/${{ github.repository }}" _site; then
41+ echo "Unexpected '/pages/${{ github.repository }}' links found in _site output"
42+ exit 1
43+ fi
44+
3845 - name : Upload artifact
3946 if : github.event_name != 'pull_request'
4047 uses : actions/upload-pages-artifact@v3
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ title: Septimal Mind Blog
44# theme: jekyll-theme-chirpy
55remote_theme : abhinavs/moonwalk
66url : https://blog.7mind.io/
7+ baseurl : " "
78repository : 7mind/blog
89
910# favicon: "./favicon.png"
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="{{ page.lang | default: "en " }}" class="html " data-theme ="{{ site.theme_config.appearance | default: "auto " }}">
3+ {%- include head.html -%}
4+ < body >
5+ < main class ="page-content " aria-label ="Content ">
6+ < div class ="w ">
7+ {{ content }}
8+ {% if site.theme_config.appearance_toggle %}
9+ {% include toggle_theme_button.html %}
10+ {% endif %}
11+ {% if site.theme_config.show_copyright == true %}
12+ < div class ="credits ">
13+ © {{ "now" | date: "%Y" }} {{site.author}}
14+ </ div >
15+ {% endif %}
16+ </ div >
17+ </ main >
18+
19+ {%- if site.soopr -%}
20+ {%- if site.soopr.publish_token and jekyll.environment == "production" -%}
21+ < script async defer data-soopr-token ="{{site.soopr.publish_token}} " src ="https://sdk.soopr.co/soopr.js "> </ script >
22+ {%- else -%}
23+ < script async defer src ="https://sdk.soopr.co/soopr.js "> </ script >
24+ {%- endif -%}
25+ {%- endif -%}
26+ </ body >
27+ </ html >
You can’t perform that action at this time.
0 commit comments