File tree Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Original file line number Diff line number Diff line change 44
44
- run : julia -e '
45
45
using Pkg; Pkg.add(["NodeJS", "Franklin"]);
46
46
using NodeJS; run(`$(npm_cmd()) install highlight.js`);
47
+ run(`$(npm_cmd()) install --save @fortawesome/fontawesome-free`)
47
48
using Franklin;
48
49
Pkg.activate("."); Pkg.instantiate();
49
50
optimize()'
Original file line number Diff line number Diff line change @@ -52,3 +52,35 @@ pre code.hljs.plaintext {
52
52
}
53
53
54
54
/* ADD ANY SPECIFIC TWEAKS YOU MIGHT WANT HERE */
55
+
56
+
57
+ /* From the turing.ml website */
58
+
59
+ .team-row {
60
+ display : flex;
61
+ align-items : center;
62
+ }
63
+
64
+ .team-row-bio {
65
+ display : flex;
66
+ align-items : center;
67
+ padding-left : 5% ;
68
+ }
69
+
70
+ .team-row-image {
71
+ width : 10em ;
72
+ height : 10em ;
73
+ overflow : hidden;
74
+ }
75
+
76
+ .team-row-image img {
77
+ border-radius : 10% ;
78
+ max-width : 100% ;
79
+ max-height : 100% ;
80
+ display : block;
81
+ margin : auto;
82
+ }
83
+
84
+ .team-row-bio-links a {
85
+ color : # 5c5c5c !important ;
86
+ }
Original file line number Diff line number Diff line change 2
2
< div class ="container ">
3
3
< span class ="navbar-brand ">
4
4
{{if add_nav_logo}}
5
- < img src ="{{nav_logo_path}} " class ="img-fluid " style ="{{nav_logo_style}} " alt ="{{nav_logo_alt}} "/>
5
+ < img src ="{{ nav_logo_path }} " class ="img-fluid " style ="{{ nav_logo_style }} " alt ="{{ nav_logo_alt }} "/>
6
6
{{end}}
7
7
< a href ="/ "> JuliaGaussianProcesses</ a >
8
8
{{if sub_page}}
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ function hfun_fill_profile()
14
14
</div>
15
15
"""
16
16
s *= " <div>"
17
- s *= " <b> $(member[:name ]) }} </b> <br> $(member[:institution ]) }} <br>"
18
- s *= haskey (member, :website ) ? """ <a style="white-space: nowrap" href=$(member[:website ]) <i class="fa fa-home"></i> </a>""" : " "
17
+ s *= " <b> $(member[:name ]) </b> <br> $(member[:institution ]) <br>"
18
+ s *= haskey (member, :website ) ? """ <a style="white-space: nowrap" href=$(member[:website ]) > <i class="fa fa-home"></i> </a>""" : " "
19
19
s *= haskey (member, :github ) ? """ <a style="white-space: nowrap" href="https://github.com/$(member[:github ]) "> <i class="fa fa-github"></i> </a>""" : " "
20
- s *= haskey (member, :twitter ) ? """ <a style="white-space: nowrap" href="https://twitter.com/$(member[:twitter ]) "> <i class="fa fa-twitter"></i> </a>""" : " "
20
+ s *= haskey (member, :twitter ) ? """ <a style="white-space: nowrap" href="https://twitter.com/$(member[:twitter ]) "> <i class="fa fa-twitter"></i> </a>""" : " "
21
21
s *= haskey (member, :email ) ? """ <a style="white-space: nowrap" href="mailto:$(member[:email ]) "> <i class="fa fa-envelope"></i> </a>""" : " "
22
22
s *= haskey (member, :linkedin ) ? """ <a style="white-space: nowrap" href="https://www.linkedin.com/in/$(member[:linkedin ]) "> <i class="fa fa-linkedin"></i> </a>""" : " "
23
23
s *= " </div>"
You can’t perform that action at this time.
0 commit comments