Skip to content

Commit e9ffdf5

Browse files
committed
Deploying to gh-pages from @ 27d2aaa 🚀
1 parent ed78644 commit e9ffdf5

333 files changed

Lines changed: 3464 additions & 0 deletions

File tree

Some content is hidden

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

‎404.html‎

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
8+
9+
<link rel="stylesheet" href="/css/franklin.css" />
10+
<link rel="stylesheet" href="/css/icons.css" />
11+
<link rel="icon" href="/assets/rndimg.jpg" />
12+
13+
<!-- Font Awesome Icons -->
14+
<link
15+
rel="stylesheet"
16+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
17+
/>
18+
19+
20+
<link rel="stylesheet" href="/css/nav.css" />
21+
<link rel="stylesheet" href="/css/sidebar.css" />
22+
<link rel="stylesheet" href="/css/cards.css" />
23+
<link rel="stylesheet" href="/css/showcase.css" />
24+
<link rel="stylesheet" href="/css/software.css" />
25+
<link rel="stylesheet" href="/css/posts.css" />
26+
27+
28+
29+
<title>Brian's Website</title>
30+
</head>
31+
<body>
32+
33+
34+
<div class="masthead">
35+
<nav>
36+
<div class="author-name-nav">
37+
<li><a href="/">Brian C. Ferrari</a></li>
38+
</div>
39+
<a class="burger-nav" onclick="myFunction()">
40+
<i class="fa-2x fa fa-bars"></i>
41+
</a>
42+
<div class="desktop-nav"><li>
43+
<a href="/pages/aboutMe">About Me</a>
44+
</li>
45+
46+
<li>
47+
<a href="/pages/software">Software</a>
48+
</li>
49+
50+
</div>
51+
<div id="hidden" class="mobile-nav"><li>
52+
<a href="/pages/aboutMe">About Me</a>
53+
</li>
54+
55+
<li>
56+
<a href="/pages/software">Software</a>
57+
</li>
58+
59+
</div>
60+
</nav>
61+
</div>
62+
63+
<div class="academic-sidebar">
64+
<div class="author_avatar"><img
65+
src="/assets/figs/me.jpg"
66+
class="author_avatar"
67+
alt="Brian C. Ferrari"
68+
/></div>
69+
70+
<h3>Brian C. Ferrari</h3>
71+
72+
<!-- Pronouns are a class -->
73+
<p class="pronouns">
74+
(he/him)
75+
</p>
76+
77+
<!-- Bio is just text -->
78+
Chemistry PhD Candidate at Leiden University
79+
<br /><br />
80+
81+
<br><br>
82+
<li>
83+
<a href="https://www.linkedin.com/in/brian-ferrari-001b8a163/" target=_blank>
84+
<i class="fa fa-brands fa-linkedin" aria-hidden="true"></i>
85+
</a>
86+
</li>
87+
<li>
88+
<a href="https://orcid.org/0000-0002-7416-8629" target=_blank>
89+
<i class="fa fa-brands fa-orcid" aria-hidden="true"></i>
90+
</a>
91+
</li>
92+
<li>
93+
<a href="https://www.researchgate.net/profile/Brian-Ferrari-2?ev=hdr_xprf" target=_blank>
94+
<i class="fa fa-brands fa-researchgate" aria-hidden="true"></i>
95+
</a>
96+
</li>
97+
<li>
98+
<a href="https://github.com/Cavenfish" target=_blank>
99+
<i class="fa fa-brands fa-github" aria-hidden="true"></i>
100+
</a>
101+
</li>
102+
<li>
103+
<a href="https://scholar.google.com/citations?user=col48NcAAAAJ&hl=en" target=_blank>
104+
<i class="fa fa-graduation-cap" aria-hidden="true"></i>
105+
</a>
106+
</li>
107+
108+
</div>
109+
110+
111+
<!-- Content appended here -->
112+
<div class="franklin-content">
113+
<div style="margin-top: 40px; font-size: 40px; text-align: center;">
114+
115+
<br>
116+
117+
<div style="font-weight: bold;">
118+
404
119+
</div>
120+
121+
<br>
122+
<br>
123+
124+
The requested page was not found
125+
126+
<br>
127+
<br>
128+
<br>
129+
<br>
130+
131+
<div style="margin-bottom: 300px; font-size: 24px">
132+
<a href="/">Click here</a> to go back to the homepage.
133+
</div>
134+
135+
</div>
136+
137+
<div class="page-foot">
138+
Website built with <a href="https://franklinjl.org/">Franklin.jl</a>
139+
</div>
140+
</div><!-- CONTENT ENDS HERE -->
141+
142+
143+
<script src="/assets/scripts/js/nav.js"></script>
144+
</body>
145+
</html>

‎assets/figs/me.jpg‎

11.6 KB
Loading

‎assets/items/cv.pdf‎

240 KB
Binary file not shown.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Parent file to run all scripts which may generate
2+
# some output that you want to display on the website.
3+
# this can be used as a tester to check that all the code
4+
# on your website runs properly.
5+
6+
dir = @__DIR__
7+
8+
"""
9+
genplain(s)
10+
11+
Small helper function to run some code and redirect the output (stdout) to a file.
12+
"""
13+
function genplain(s::String)
14+
open(joinpath(dir, "output", "$(splitext(s)[1]).txt"), "w") do outf
15+
redirect_stdout(outf) do
16+
include(joinpath(dir, s))
17+
end
18+
end
19+
end
20+
21+
# genplain("some_script.jl")

‎assets/scripts/js/nav.js‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function myFunction() {
2+
var x = document.getElementById("hidden");
3+
if (x.style.display === "block") {
4+
x.style.display = "none";
5+
} else {
6+
x.style.display = "block";
7+
}
8+
}

‎assets/theme.scss‎

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
Set your website theme here.
3+
*/
4+
5+
// Background
6+
$primary-background: #cebada;
7+
$secondary-background: #048594;
8+
$tertiary-background: #DB3069;
9+
10+
// Foreground
11+
$primary-foreground: #000000;
12+
$secondary-foreground: #b81149;
13+
$tertiary-foreground: #462749;
14+
15+
// Font
16+
$font-stack: Helvetica, Arial, sans-serif;
17+
$xlarge-font: 24px;
18+
$large-font: 22px;
19+
$normal-font: 20px;
20+
$medium-font: 17px;
21+
$small-font: 14px;
22+
23+
// Footer
24+
$footer-font-stack: Arial, serif;
25+
$footer-text-color: #a6a2a0;
26+
$footer-font-size: 16px;

‎config.toml‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[general]
2+
author = "Brian C. Ferrari"
3+
pronouns = "(he/him)"
4+
my_picture = "/assets/figs/me.jpg"
5+
my_bio = "Chemistry PhD Candidate at Leiden University"
6+
7+
[links]
8+
scholar = [ "https://scholar.google.com/citations?user=col48NcAAAAJ&hl=en", "fa fa-graduation-cap" ]
9+
github = [ "https://github.com/Cavenfish", "fa fa-brands fa-github" ]
10+
orcid = [ "https://orcid.org/0000-0002-7416-8629", "fa fa-brands fa-orcid" ]
11+
linkedin = [ "https://www.linkedin.com/in/brian-ferrari-001b8a163/", "fa fa-brands fa-linkedin" ]
12+
researchgate = [ "https://www.researchgate.net/profile/Brian-Ferrari-2?ev=hdr_xprf", "fa fa-brands fa-researchgate" ]

‎css/cards.css‎

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/*
2+
Variables to be used throughout site
3+
*/
4+
/*
5+
Set your website theme here.
6+
*/
7+
.card {
8+
width: 100%;
9+
height: 35%;
10+
padding: 5px;
11+
box-shadow: 0 0 8px 4px #DB3069;
12+
border: 2px solid #000000;
13+
display: flex;
14+
}
15+
.card .card-img {
16+
width: 35%;
17+
height: 100%;
18+
padding: 0;
19+
display: inline-block;
20+
}
21+
.card .card-img img {
22+
padding: 0;
23+
width: 100%;
24+
}
25+
.card .card-info {
26+
width: 60%;
27+
height: 100%;
28+
padding-right: 0;
29+
padding-left: 20px;
30+
display: inline-block;
31+
text-align: left;
32+
}
33+
.card .card-info .title {
34+
color: #b81149;
35+
}
36+
37+
@media (max-width: 480px) {
38+
.card {
39+
display: block;
40+
}
41+
.card .card-img {
42+
width: 100%;
43+
text-align: center;
44+
}
45+
.card .card-img img {
46+
width: 95%;
47+
margin: auto;
48+
}
49+
.card .card-info {
50+
width: 100%;
51+
text-align: center;
52+
padding-left: 0;
53+
}
54+
.card .card-info h2 {
55+
text-align: center;
56+
}
57+
}

0 commit comments

Comments
 (0)