File tree Expand file tree Collapse file tree 9 files changed +1127
-6
lines changed
images/posts/buildernet-1 Expand file tree Collapse file tree 9 files changed +1127
-6
lines changed Original file line number Diff line number Diff line change 2828serve : build
2929 @[ -d public ] || { echo " Build output not found: public/" ; exit 1; }
3030 @echo " Serving blog at http://localhost:8000"
31- @cd public && python3 -m http.server 8000
31+ @python3 -m http.server 8000 --directory " $( CURDIR ) /public "
3232
3333# Alias for serve
3434server : serve
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 33#+DATE: 2025-07-01
44#+OPTIONS: author:nil toc:nil num:nil h:0
55
6+ - [[file:2026-02-12-block-builder-buildernet-1-cn.org][Block Builder 深度解析:Ethereum BuilderNet(一)]]
67- [[file:2024-10-02-babylon-cn.org][什么是 Babylon?]]
78- [[file:2024-06-30-syntax-highlighting-test-cn.org][语法高亮测试]]
89- [[file:2024-06-16-waku-cn.org][Waku 网络]]
9- - [[file:2024-01-29-getting-started-with-emacs-cn.org][Emacs 入门:现代化方法]]
10+ - [[file:2024-01-29-getting-started-with-emacs-cn.org][Emacs 入门:现代化方法]]
Original file line number Diff line number Diff line change 22#+AUTHOR:
33#+OPTIONS: author:nil toc:nil num:nil h:0
44
5+ - [[file:2026-02-12-block-builder-buildernet-1.org][Block Builder Deep Dive: Ethereum BuilderNet (I)]]
56- [[file:2024-10-02-babylon.org][What is Babylon?]]
67- [[file:2024-06-30-syntax-highlighting-test.org][Syntax Highlighting Test]]
78- [[file:2024-06-16-waku.org][The Waku Network]]
Original file line number Diff line number Diff line change @@ -149,11 +149,17 @@ body {
149149 padding : 0 var (--space-xl );
150150}
151151
152- /* Header */
153- . site-header {
152+ /* Header wrapper from Org preamble */
153+ # preamble {
154154 position : sticky;
155155 top : 0 ;
156156 z-index : 100 ;
157+ }
158+
159+ /* Header */
160+ .site-header {
161+ position : relative;
162+ z-index : 100 ;
157163 background-color : var (--header-bg );
158164 border-bottom : 0.5px solid var (--border-color );
159165 padding : 0.65rem 0 ;
@@ -424,12 +430,18 @@ li strong {
424430}
425431
426432/* Special handling for main content lists */
427- .main-content ul ,
428- .main-content ol {
433+ .main-content ul {
429434 padding-left : 0 ;
430435 list-style : none;
431436}
432437
438+ /* Keep ordered-list numbering visible for process/step sections */
439+ .main-content ol {
440+ padding-left : 1.5rem ;
441+ list-style : decimal;
442+ list-style-position : outside;
443+ }
444+
433445.main-content ul li ::before {
434446 content : '•' ;
435447 display : inline-block;
You can’t perform that action at this time.
0 commit comments