Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<h1 class="max-w-lg mx-auto pt-5 px-8">
<img src="/img/2025/top/header-logo.png" alt="DojoCon Japan 2025 Inspire Next." />
</h1>
26 changes: 16 additions & 10 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
{% if page_title or page_title =='' %}
{% assign page_title = page.title %}
{% if page_title or page_title == '' %}
{% assign page_title = page.title %}
{% endif %}
{% if page_subtitle or page_subtitle =='' %}
{% assign page_subtitle = page.subtitle %}
{% if page_subtitle or page_subtitle == '' %}
{% assign page_subtitle = page.subtitle %}
{% endif %}
{% assign page_title = page.title %}
<!DOCTYPE html>
<html lang="ja" dir="ltr">
{% include head.html %}
<body>
{% include navbar.html %}
{{ content }}
{% include head.html %}

<body class="bg-linear-106 from-[#9d1e29] to-[#d4932a] text-[#262626] font-bold tracking-wider min-h-screen p-4 flex">
<div class="bg-white rounded-2xl min-h-full flex-1 flex flex-col">
{% include header.html %}

<div class="flex-1">
{{ content }}
</div>

<div id="page-top"><a href="#top"><img src="/img/svg/up.svg" alt="Up" width="24px" /></a></div>
{% include footer.html %}
</body>
</div>
</body>

</html>
Loading