Skip to content

Commit 4cf6fc9

Browse files
Add julia to the github links on homepage
1 parent 33ba3a0 commit 4cf6fc9

File tree

2 files changed

+47
-38
lines changed

2 files changed

+47
-38
lines changed

layouts/partials/custom_head.html

Lines changed: 40 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,30 @@
11
<!-- A partial to be overwritten by the user.
22
Its content will appear before the closing </head>-tag -->
33

4-
54
<!-- Custom CSS via inline styles
65
You may use this template to add custom CSS to your site like so: -->
76
<style>
8-
body {
9-
font-size: 1.6rem;
10-
}
11-
:root {
12-
--ul-li-icon: fa-skull-crossbones
13-
}
14-
15-
a {
16-
color: #478600;
17-
}
18-
a:hover {
19-
color: #37501a;
20-
}
7+
body {
8+
font-size: 1.6rem;
9+
}
10+
:root {
11+
--ul-li-icon: fa-skull-crossbones;
12+
}
2113

22-
.dark a {
23-
color: #94c4ff;
24-
}
25-
.dark a:hover {
26-
color: #2b2fec;
27-
}
14+
a {
15+
color: #478600;
16+
}
17+
a:hover {
18+
color: #37501a;
19+
}
2820

29-
.darklinks a {
21+
.dark a {
22+
color: #94c4ff;
23+
}
24+
.dark a:hover {
25+
color: #2b2fec;
26+
}
27+
.darklinks a {
3028
color: #b80135;
3129
border-radius: 6px;
3230
-webkit-border-radius: 6px;
@@ -38,21 +36,20 @@
3836
text-decoration: none;
3937
position: relative;
4038
overflow: visible;
41-
}
42-
.darklinks a:hover {
39+
}
40+
.darklinks a:hover {
4341
color: #ff737e;
44-
}
42+
}
4543

46-
h3 {
44+
h3 {
4745
color: #b80135;
4846
margin: 10px 0;
4947
font-size: 3rem;
5048
letter-spacing: -1px;
5149
text-shadow: var(--cover-title-text-shadow);
52-
}
50+
}
5351
</style>
5452

55-
5653
<!-- Custom CSS via "custom.css"-file
5754
If you would rather place your custom CSS into
5855
a separate file, create a "custom.css" in your
@@ -68,8 +65,19 @@
6865
<!-- Custom link-tags for different icons
6966
Generated via https://favicon.io/favicon-generator/ -->
7067

71-
{{ with resources.Get "images/apple-touch-icon.png" }}<link rel="apple-touch-icon" sizes="180x180" href="{{ .RelPermalink }}" />{{ end }}
72-
{{ with resources.Get "images/favicon.svg" }}<link rel="icon" type="image/svg+xml" href="{{ .RelPermalink }}" />{{ end }}
73-
{{ range seq 9 4 }}{{ $size := pow 2 . }}{{ $file := replace "images/favicon-##x##.png" "##" $size }}{{ with resources.Get $file }}
74-
<link rel="icon" type="{{ .MediaType.Type }}" sizes="{{- $size -}}x{{- $size -}}" href="{{ .RelPermalink }}" />{{ end }}{{ end }}
75-
68+
{{ with resources.Get "images/apple-touch-icon.png" }}<link
69+
rel="apple-touch-icon"
70+
sizes="180x180"
71+
href="{{ .RelPermalink }}"
72+
/>{{ end }} {{ with resources.Get "images/favicon.svg" }}<link
73+
rel="icon"
74+
type="image/svg+xml"
75+
href="{{ .RelPermalink }}"
76+
/>{{ end }} {{ range seq 9 4 }}{{ $size := pow 2 . }}{{ $file := replace
77+
"images/favicon-##x##.png" "##" $size }}{{ with resources.Get $file }}
78+
<link
79+
rel="icon"
80+
type="{{ .MediaType.Type }}"
81+
sizes="{{- $size -}}x{{- $size -}}"
82+
href="{{ .RelPermalink }}"
83+
/>{{ end }}{{ end }}

themes/hugo-scroll/layouts/_default/index.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,15 @@ <h3>github links</h3>
119119
<div class="darklinks">
120120
<a
121121
href="https://github.com/libsemigroups/libsemigroups">
122-
libsemigroups C/C++ </a>
123-
&nbsp; | &nbsp;
124-
<a href="https://github.com/Semigroups/semigroups">Semigroups GAP
125-
package</a>
126-
&nbsp; | &nbsp;
122+
C/C++ </a>
123+
<a href="https://github.com/Semigroups/semigroups">
124+
GAP</a>
127125
<a
128126
href="https://github.com/libsemigroups/libsemigroups_pybind11">
129-
libsemigroups_pybind11 python</a><br/>
127+
python</a>
128+
<a
129+
href="https://github.com/libsemigroups/Semigroups.jl">
130+
Julia</a>
130131
</div>
131132

132133
{{ with (index $content 0) }}

0 commit comments

Comments
 (0)