Skip to content

Commit 4a0b3d3

Browse files
committed
add navbar from makie.org
1 parent 709c6c0 commit 4a0b3d3

File tree

3 files changed

+71
-8
lines changed

3 files changed

+71
-8
lines changed

docs/make.jl

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ title = "Makie Blog"
1212
link = "https://blog.makie.org"
1313
description = "A Blog about anything new in the Makie world"
1414

15-
function create_routes(f, page_folder, destination)
15+
function create_routes(f, page_folder, destination=nothing)
1616
routes = Routes()
1717
folders = filter(isdir, readdir(page_folder; join=true))
1818
entries = map(folders) do dir
@@ -28,12 +28,12 @@ function create_routes(f, page_folder, destination)
2828
end
2929
site_entries = map(x -> x[2], entries)
3030
routes["/"] = App(f(Bonito.Col(site_entries...)))
31+
isnothing(destination) && return routes
3132
rss_path = joinpath(destination, "rss.xml")
3233
BonitoSites.generate_rss_feed(site_entries, rss_path; title, link, description, relative_path="./website/")
3334
return routes
3435
end
3536

36-
3737
##
3838
# using Revise
3939
# routes, task, server = interactive_server([Blog.markdown(), Blog.assetpath()]) do
@@ -49,8 +49,6 @@ routes = create_routes(Blog.Page, Blog.markdown(), build);
4949
Bonito.export_static(build, routes);
5050
cp(Blog.assetpath("images"), Blog.site_path("build", "images"))
5151

52-
53-
5452
##
5553
BonitoSites.deploy(
5654
"github.com/MakieOrg/Blog.git";

src/Blog.jl

+69-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,60 @@ function BlueSky(post)
2828
return DOM.div(container, js)
2929
end
3030

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)
3285
assets = asset.([
3386
"css/makie.css",
3487
"css/style.css"
@@ -42,8 +95,12 @@ function Page(markdown_page)
4295
title="Makie Blog rss feed",
4396
href="./rss.xml"
4497
)
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()
47104
return DOM.html(
48105
DOM.head(
49106
DOM.meta(charset="UTF-8"),
@@ -52,7 +109,15 @@ function Page(markdown_page)
52109
assets...,
53110
DOM.link(rel="icon", type="image/x-icon", href=asset("images", "favicon.ico")),
54111
),
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+
)
56121
)
57122
end
58123

82.2 KB
Loading

0 commit comments

Comments
 (0)