Skip to content

Commit 65e913a

Browse files
committed
new template with Xranklin
1 parent 0720c2d commit 65e913a

File tree

21 files changed

+29
-382
lines changed

21 files changed

+29
-382
lines changed

404.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
@def title = "404"
1+
+++
2+
title = "404"
3+
+++
24

35
~~~
46
<div style="margin-top: 40px; font-size: 40px; text-align: center;">

Project.toml

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

_assets/.DS_Store

6 KB
Binary file not shown.

_css/adjust.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ h5 a:visited { color: #81353c !important; }
6262

6363

6464
.jp-logo {
65-
background-image: url("/assets/logo.png");
65+
background-image: url('../assets/logo.png');
6666
padding-right:10px;
6767
width:6%;
6868
}

_css/minimal-mistakes.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1867,7 +1867,7 @@ th {
18671867
}
18681868

18691869
.masthead {
1870-
background: transparent url("/assets/banner.png") fixed repeat center top;
1870+
background: transparent url('../assets/banner.png') fixed repeat center top;
18711871
height: 60px;
18721872
position: relative;
18731873
border-bottom: 1px solid #f2f3f3;
@@ -2529,7 +2529,7 @@ th {
25292529
}
25302530

25312531
.page__footer {
2532-
background-image: url("/assets/footer.png");
2532+
background-image: url('../assets/footer.png');
25332533
clear: both;
25342534
float: left;
25352535
margin-left: 0;

_layout/tag.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
{{insert style.html}}
7-
<title>Tag: {{fill fd_tag}}</title>
7+
<title>Tag: {{fill tag_name}}</title>
88
</head>
99
{{insert body_layout.html}}
1010

11-
<div class="{{div_content}}">
12-
<h1>Tag: {{fill fd_tag}}</h1>
11+
<div class="{{content_class}}">
12+
<h1>Tag: {{fill tag_name}}</h1>
1313
{{taglist}}
1414
{{insert page_foot.html}}
1515
</div>

_libs/.DS_Store

6 KB
Binary file not shown.

_rss/head.xml

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

_rss/item.xml

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

config.md

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,15 @@
22
Add here global page variables to use throughout your website.
33
-->
44
+++
5+
56
author = "JuliaParallel"
67
mintoclevel = 2
78

8-
# Add here files or directories that should be ignored by Franklin, otherwise
9-
# these files might be copied and, if markdown, processed by Franklin which
10-
# you might not want. Indicate directories by ending the name with a `/`.
11-
# Base files such as LICENSE.md and README.md are ignored by default.
12-
ignore = ["node_modules/"]
13-
14-
# RSS (the website_{title, descr, url} must be defined to get RSS)
15-
generate_rss = true
16-
website_title = "JuliaParallel"
17-
website_descr = "JuliaParallel"
18-
website_url = "https://juliaparallel.org/"
19-
209
# Author badges
2110
using DelimitedFiles
2211
author_badges_mat = readdlm("_assets/author-badges.dat", ':')
2312
author_badges = Dict()
24-
for i = 1:size(author_badges_mat,1)
25-
author_badges[author_badges_mat[i]] =
26-
rstrip.(lstrip.(split(author_badges_mat[i,2], ",")))
27-
end
13+
[author_badges[author_badges_mat[i]] = rstrip.(lstrip.(split(author_badges_mat[i,2], ",")))
14+
for i in 1:size(author_badges_mat,1) ]
2815

2916
+++
30-
31-
<!--
32-
Add here global latex commands to use throughout your pages.
33-
-->
34-
\newcommand{\R}{\mathbb R}
35-
\newcommand{\scal}[1]{\langle #1 \rangle}

0 commit comments

Comments
 (0)