@@ -28,7 +28,60 @@ function BlueSky(post)
28
28
return DOM. div (container, js)
29
29
end
30
30
31
- function Page (markdown_page)
31
+ function Navigation (highlighted= " " )
32
+ function item (name, href; target= " " )
33
+ bg = name == " Blog" ? " #73b5e4" : " "
34
+ style = Bonito. Styles (
35
+ CSS (
36
+ " color" => " white" ,
37
+ " cursor" => " pointer" ,
38
+ " padding" => " 0.25rem 0.5rem" ,
39
+ " transition" => " opacity 0.2s" ,
40
+ " opacity" => " 1.0" ,
41
+ " background-color" => bg
42
+ ),
43
+ CSS (" :hover" ," opacity" => " 0.5" ),
44
+ )
45
+ l = Bonito. Styles (" text-decoration" => " none" ,)
46
+ return DOM. a (DOM. div (name, style= style); href= href, target= target, style= l)
47
+ end
48
+
49
+ github = asset (" images/GitHub-Mark-Light-64px.png" )
50
+ img_style = Bonito. Styles (
51
+ " height" => " 1.2rem" ,
52
+ " display" => " inline-block" ,
53
+ " vertical-align" => " text-bottom"
54
+ )
55
+
56
+ container_style = Bonito. Styles (
57
+ " display" => " flex" ,
58
+ " justify-content" => " center" ,
59
+ " background-color" => ! isempty (highlighted) ? " #73b5e4" : " #3892d2" ,
60
+ )
61
+
62
+ inner_container_style = Bonito. Styles (
63
+ " display" => " flex" ,
64
+ " width" => " 100%" ,
65
+ " padding" => " 0 1rem" ,
66
+ " flex-wrap" => " wrap" ,
67
+ " height" => " 2rem" ,
68
+ )
69
+ return DOM. div (
70
+ style= container_style, class= " outer-page" ,
71
+ DOM. div (
72
+ style= inner_container_style, class= " inner-page" ,
73
+ item (" Home" , " https://makie.org/website/" ),
74
+ item (" Team" , " https://makie.org/website/team/" ),
75
+ item (" Support" , " https://makie.org/website/support/" ),
76
+ item (" Contact" , " https://makie.org/website/contact/" ),
77
+ item (" Blog" , Bonito. Link (" /" )),
78
+ item (" Docs" , " http://docs.makie.org" ; target= " _blank" ),
79
+ item (DOM. img (src= github, style= img_style), " https://github.com/MakieOrg/Makie.jl" ; target= " _blank" )
80
+ )
81
+ )
82
+ end
83
+
84
+ function Page (markdown_page, bsky= nothing )
32
85
assets = asset .([
33
86
" css/makie.css" ,
34
87
" css/style.css"
@@ -42,8 +95,12 @@ function Page(markdown_page)
42
95
title= " Makie Blog rss feed" ,
43
96
href= " ./rss.xml"
44
97
)
45
- bluesky = BlueSky (" https://bsky.app/profile/georgetakei.bsky.social/post/3le5a5c4hp222" )
46
-
98
+ bluesky = if ! isnothing (bsky)
99
+ Centered (Card (BlueSky (bsky)))
100
+ else
101
+ nothing
102
+ end
103
+ navigation = Navigation ()
47
104
return DOM. html (
48
105
DOM. head (
49
106
DOM. meta (charset= " UTF-8" ),
@@ -52,7 +109,15 @@ function Page(markdown_page)
52
109
assets... ,
53
110
DOM. link (rel= " icon" , type= " image/x-icon" , href= asset (" images" , " favicon.ico" )),
54
111
),
55
- DOM. body (DOM. div (banner, body, Centered (Card (bluesky))), tracking ())
112
+ DOM. body (
113
+ DOM. div (
114
+ banner,
115
+ navigation,
116
+ body,
117
+ bluesky
118
+ ),
119
+ tracking ()
120
+ )
56
121
)
57
122
end
58
123
0 commit comments