Skip to content

Commit e968216

Browse files
authored
Add showcases (#52)
1 parent 3ea3a6c commit e968216

File tree

89 files changed

+410
-1453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+410
-1453
lines changed

Manifest.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# This file is machine-generated - editing it directly is not advised
22

3-
julia_version = "1.9.2"
3+
julia_version = "1.9.4"
44
manifest_format = "2.0"
5-
project_hash = "471c9743ba70a989d67778bee16a3c4e8c8ad36d"
5+
project_hash = "f3d8e2ab8b29445a93b1b16df38a062765d4d8f3"
66

77
[[deps.ArgTools]]
88
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
@@ -91,12 +91,12 @@ version = "0.21.2"
9191
[[deps.LibCURL]]
9292
deps = ["LibCURL_jll", "MozillaCACerts_jll"]
9393
uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"
94-
version = "0.6.3"
94+
version = "0.6.4"
9595

9696
[[deps.LibCURL_jll]]
9797
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"]
9898
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"
99-
version = "7.84.0+0"
99+
version = "8.4.0+0"
100100

101101
[[deps.LibGit2]]
102102
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
@@ -105,7 +105,7 @@ uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
105105
[[deps.LibSSH2_jll]]
106106
deps = ["Artifacts", "Libdl", "MbedTLS_jll"]
107107
uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8"
108-
version = "1.10.2+0"
108+
version = "1.11.0+1"
109109

110110
[[deps.Libdl]]
111111
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
@@ -229,9 +229,9 @@ version = "1.2.13+0"
229229
[[deps.nghttp2_jll]]
230230
deps = ["Artifacts", "Libdl"]
231231
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
232-
version = "1.48.0+0"
232+
version = "1.52.0+1"
233233

234234
[[deps.p7zip_jll]]
235235
deps = ["Artifacts", "Libdl"]
236236
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
237-
version = "17.4.0+0"
237+
version = "17.4.0+0"

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Franklin = "713c75ef-9fc9-4b05-94a9-213340da978e"
33

44
[compat]
55
Franklin = "0.10.35"
6+
julia = "=1.9"

_assets/img/diffeqgpu-lorenz.jpg

229 KB
Loading
229 KB
Loading
6.27 MB
Loading

_css/bootstrap.min.css

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
<style>
2-
.hljs {
3-
padding: 0;
4-
background: 0 0
5-
}
1+
/* Reduce whitespace around code blocks */
2+
pre code.hljs {
3+
padding: 0;
4+
background: 0 0
5+
}
6+
7+
/* Limit page width */
68
.container {
79
max-width: 700px
810
}
911

12+
/* Add line under navigation menu */
1013
#nav-border {
1114
border-bottom: 1px solid #212529
1215
}
@@ -16,10 +19,6 @@
1619
margin-bottom: 4em
1720
}
1821

19-
#home-jumbotron {
20-
background-color: inherit
21-
}
22-
2322
#footer .container {
2423
padding: 1em 0
2524
}
@@ -44,14 +43,7 @@
4443
padding: 16px
4544
}
4645

47-
pre code {
48-
padding: 0;
49-
font-size: inherit;
50-
color: inherit;
51-
background-color: transparent;
52-
border-radius: 0
53-
}
54-
46+
/* Highlight inline code blocks */
5547
code {
5648
padding: 2px 4px;
5749
font-size: 90%;
@@ -83,4 +75,7 @@
8375
margin: 0
8476
}
8577

86-
</style>
78+
/* Dropdown hover effect */
79+
.dropdown:hover .dropdown-menu {
80+
display: block;
81+
}

_layout/foot.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
</main>
33
</div> <!-- class="container" -->
44

5-
6-
{{ if hasmath }}
7-
{{ insert foot_katex.html }}
8-
{{ end }}
95
{{ if hascode }}
106
{{ insert foot_highlight.html }}
117
{{ end }}
@@ -15,9 +11,12 @@
1511
</footer>
1612

1713
<!-- FEATHER -->
18-
<script src="/libs/feather/feather.min.js"></script>
14+
<script src="https://cdn.jsdelivr.net/npm/feather[email protected]/dist/feather.min.js"></script>
1915
<script>feather.replace()</script>
2016

17+
<!-- BOOTSTRAP -->
18+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
19+
2120
<!-- GOOGLE ANALYTICS -->
2221
<script>
2322
window.ga = window.ga || function() {

_layout/foot_highlight.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
<script src="/libs/highlight/highlight.min.js"></script>
2-
<script>hljs.initHighlightingOnLoad();hljs.configure({tabReplace: ' '});</script>
1+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
2+
3+
<!-- Languages -->
4+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/languages/julia.min.js"></script>
5+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/languages/julia-repl.min.js"></script>
6+
7+
<script>hljs.highlightAll();</script>

_layout/foot_katex.html

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)