* add npm dependencies used in this theme * implement helper to configure JS and ESBuild * migrate jquery popper.js bootstrap fontawesome to js bundle * refactor main.js into smaller pieces, and moved navbar.js to assets * remove list.js. It adjusts post card height to be the same, but is actually not needed. * refactored notes.js, search.js, single.js into application.js * move ityped to js asset, implement experiences horizontal vertical line in css * align recent post height via css * migrated home.js and refactored into various sections * migrated darkMode feature to js bundle * moved mermaid feature to js bundle * migrate syntax highlight to js bundle * migrate katex ( js portion ) to js bundle * migrate pdf-js to js bundle by delegating to cdn * set explicit comparisions for feature envvars so js can properly optimize * removed goat-counter * more fixes for broken achievements and small bugs * more bug fixes * allow configuration of hightlight.js, fix video-player shortcode * remove jquery all together * add null handling and fix merge conflicts Co-authored-by: Aaron Qian <aaron@yeet.io>
68 lines
2.5 KiB
HTML
68 lines
2.5 KiB
HTML
{{ define "header" }}
|
|
<link rel="stylesheet" href="{{ "/css/layouts/list.css" | relURL }}">
|
|
<link rel="stylesheet" href="{{ "/css/navigators/sidebar.css" | relURL}}">
|
|
<!--================= custom style overrides =========================-->
|
|
<link rel="stylesheet" href="{{ "/css/style.css" | relURL }}"/>
|
|
|
|
{{ end }}
|
|
|
|
{{ define "navbar" }}
|
|
{{ partial "navigators/navbar-2.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "sidebar" }}
|
|
{{ $homePage:="#" }}
|
|
{{ if site.IsMultiLingual }}
|
|
{{ $homePage = (path.Join (cond ( eq .Language.Lang "en") "" .Language.Lang) .Type) }}
|
|
{{ end }}
|
|
|
|
<section class="sidebar-section" id="sidebar-section">
|
|
<div class="sidebar-holder">
|
|
<div class="sidebar" id="sidebar">
|
|
<form class="mx-auto" method="get" action="{{ "search" | relLangURL }}">
|
|
<input type="text" name="keyword" value="" placeholder="{{ i18n "search" }}" data-search="" id="search-box" />
|
|
</form>
|
|
<div class="sidebar-tree">
|
|
<ul class="tree" id="tree">
|
|
<li id="list-heading"><a href="{{ .Type | relLangURL }}" data-filter="all">{{ i18n .Type }}</a></li>
|
|
<div class="subtree">
|
|
{{ partial "navigators/sidebar.html" (dict "menuName" "sidebar" "menuItems" site.Menus.sidebar "ctx" .) }}
|
|
</div>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<section class="content-section" id="content-section">
|
|
<div class="content container-fluid" id="content">
|
|
<div class="container-fluid post-card-holder" id="post-card-holder">
|
|
<div id="search-results">
|
|
|
|
<script id="search-result-template" type="text/x-js-template">
|
|
<div class="post-card">
|
|
<a href="${link}" class="post-card-link">
|
|
<div class="card" style="min-height: 352px;"><a href="${link}" class="post-card-link">
|
|
<div class="card-head">
|
|
<img class="card-img-top" src="${hero}" alt="Card Heading Image">
|
|
</div>
|
|
<div class="card-body">
|
|
<h5 class="card-title">${title}</h5>
|
|
<p class="card-text post-summary">${summary}</p>
|
|
</div>
|
|
<div class="card-footer">
|
|
<span class="float-left">${date}</span>
|
|
<a href="${link}" class="float-right btn btn-outline-info btn-sm">Read</a>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</script>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|