Skip to content

Commit b7ebc15

Browse files
committed
eth block builder
1 parent 8f45209 commit b7ebc15

File tree

9 files changed

+1127
-6
lines changed

9 files changed

+1127
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ clean:
2828
serve: 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
3434
server: serve

posts/2026-02-12-block-builder-buildernet-1-cn.org

Lines changed: 553 additions & 0 deletions
Large diffs are not rendered by default.

posts/2026-02-12-block-builder-buildernet-1.org

Lines changed: 554 additions & 0 deletions
Large diffs are not rendered by default.

posts/index-cn.org

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
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 入门:现代化方法]]

posts/index.org

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
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]]

static/css/blog.css

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff 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;
237 KB
Loading
219 KB
Loading
171 KB
Loading

0 commit comments

Comments
 (0)