Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
penglei committed Nov 22, 2023
1 parent da7b1a3 commit 9963196
Show file tree
Hide file tree
Showing 36 changed files with 171 additions and 894 deletions.
29 changes: 24 additions & 5 deletions about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,37 @@
<!-- 内容 -->
<!-- 可以根据page的类型做不同的渲染 -->
<main class="md-main">
<div class="md-main__inner md-grid"><p>这个静态博客是用 haskell 实现的</p></div>
<div class="md-main__inner md-grid">
<div class="md-typeset"><h2 id="关于我">关于我</h2>
<ul>
<li>前端后端都了解一点,目前在 Kubernetes 上管理数据库,不喜欢 <a
href="https://en.wikipedia.org/wiki/Buzzword" title="haha">Buzzword</a>
👉 「云原生」</li>
<li>只想理解分布式算法和数据库原理,不是任何系统的俘虏,一直在写 Demo
的路上</li>
<li>函数式/静态类型语言粉丝,喜欢逻辑学以及
PL/PLT,类型系统门外汉,永远入不了门 😆(╯°Д°)╯︵┻━┻</li>
<li>关注各种包管理工具和构建系统,nix 忠实用户</li>
<li>Linux 虚拟机用 NixOS,macOS 上 <em>yabai</em> <strong>+</strong>
<em>alacritty</em> <strong>+</strong> <em>nix shell</em> 绝配</li>
<li>Vim 编辑器 和 IDE 之间来回横跳,试用 <a
href="https://github.com/helix-editor/helix">Helix</a>
进行日常编码中</li>
</ul>
<p>这个静态博客主要是用 <a href="https://shakebuild.com/">Shake</a> + <a
href="https://pandoc.org/">Pandoc</a> 实现的,以前尝试过
Hexo、Hugo、Hakyll 等 SSG,
不满足于这些工具部署的复杂性,功能冗余却无法完全定制,遂造轮子,同时在实践中学习
Haskell。</p></div>
</div>
</main>

<footer class="md-footer">
<div class="md-grid">
<div class="md-footer-meta md-typeset">
<p class="md-footer-meta__inner">
<span>© 2023 </span>
<span>
Powered by
<a href="https://shakebuild.com/" rel="noopener" target="_blank">Shake</a>
</span>
<span> All rights reserved </span>
</p>
</div>
</div>
Expand Down
26 changes: 2 additions & 24 deletions archive/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ <h2 class="entry-header">
<div class="archive-posts">
<article class="post-entry">
<header class="entry-header">
<h2><a class="entry-link" href="/posts/gfm/">github-flavored markdown syntax</a></h2>
<h2><a class="entry-link" href="/posts/markdown-syntax-demo/">markdown syntax demo</a></h2>
</header>
<footer class="entry-footer">
<span class="date" title="Oct 19 2023">Oct 19 2023 </span>
Expand All @@ -85,25 +85,6 @@ <h2><a class="entry-link" href="/posts/gfm/">github-flavored markdown syntax</a>
</article>
</div>
</div>
<div class="archive-group">
<h2 class="entry-header">
<span>2021</span>
<sup class="archive-count">1</sup>
</h2>
<div class="archive-posts">
<article class="post-entry">
<header class="entry-header">
<h2><a class="entry-link" href="/posts/papermod-features/">PaperMod Features</a></h2>
</header>
<footer class="entry-footer">
<span class="date" title="Jan 20 2021">Jan 20 2021 </span>
<p class="meta-tags">
<a href="/tags/papermod/"> PaperMod </a>
</p>
</footer>
</article>
</div>
</div>
<div class="archive-group">
<h2 class="entry-header">
<span>2020</span>
Expand Down Expand Up @@ -215,10 +196,7 @@ <h2><a class="entry-link" href="/posts/welcome/">Welcome</a></h2>
<div class="md-footer-meta md-typeset">
<p class="md-footer-meta__inner">
<span>© 2023 </span>
<span>
Powered by
<a href="https://shakebuild.com/" rel="noopener" target="_blank">Shake</a>
</span>
<span> All rights reserved </span>
</p>
</div>
</div>
Expand Down
20 changes: 20 additions & 0 deletions assets/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -1876,6 +1876,11 @@ html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover
color: var(--md-default-fg-color--lightest);
}

.terms-tags {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.terms-tags li {
display: inline-block;
margin-left: 0.5em;
Expand All @@ -1890,4 +1895,19 @@ html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover
background: var(--md-default-bg-color--light);
border-radius: 6px;
transition: transform 0.1s;
}

[data-md-color-scheme=dracula] .md-typeset table:not([class]) {
box-shadow: var(--md-shadow-z2);
}
[data-md-color-scheme=dracula] .md-typeset table:not([class]) tr:hover {
background-color: rgba(0, 0, 0, 0.08);
}
[data-md-color-scheme=dracula] .md-typeset table:not([class]) th {
color: var(--md-text-color);
background-color: var(--md-default-bg-color--ultra-dark);
border-bottom: 0.05rem solid var(--md-primary-fg-color);
}
[data-md-color-scheme=dracula] .md-typeset table:not([class]) td {
border-top: 0.05rem solid var(--md-default-fg-color--lighter);
}
Loading

0 comments on commit 9963196

Please sign in to comment.