-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
149 lines (114 loc) · 2.97 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
---
title: ""
image: "resources/logo_dynamic_hero.png"
site: distill::distill_website
links:
- label: Blog
url: "blog.html"
- label: DataViz
url: "challenges.html"
- label: Projects
url: "projects.html"
---
<style>
.parallax {
/* The image used */
background-image: url("resources/sailplot.png");
/* Set a specific height */
height: 100vh;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.welcome {
position: absolute;
left: 0;
top: 25vh;
width: 100vw;
text-align: center;
color: #000;
}
.welcome span.title {
font-family: 'Bitter', serif;
color: #000;
font-size: 48px;
letter-spacing: 10px;
line-height: 1.6;
}
.welcome span.surrounding {
font-family: 'Bitter', serif;
color: #000;
font-size: 24px;
letter-spacing: 5px;
}
.welcome span.downarrow {
font-size: 42px;
}
.downbutton {
background: rgba(0,0,0,0);
border: none;
outline: none;
color: #1BC7DC;
text-align: center;
font-size: 42px;
}
d-title.d-title {
display: none;
}
.greeting {
min-height: 50vh;
padding-top: 25vh;
font-size: 20px;
text-align: center;
line-height: 1.25;
}
</style>
<div class="parallax l-screen">
<div class="welcome">
<span class="surrounding">Welcome to the</span><br><br><br>
<span class="title">jolly data blog</span><br><br><br>
<span class="downarrow">
<button class="downbutton" onclick="window.scroll({ top: window.innerHeight+50, left: 0, behavior: 'smooth' });">
<img src="resources/logo_dynamic.png" width="130px">
</button>
</span>
</div>
</div>
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo=F, message=F, warning=F)
```
```{css echo=FALSE}
.rounded-circle {
border-radius: 30%!important;
}
```
```{r load_packages, message=FALSE, warning=FALSE, include=FALSE}
library("fontawesome")
library(metathis)
meta() %>%
meta_description(
"The personal website of Christian A. Gebhard"
) %>%
meta_name("github-repo" = "nucleic-acid/jollydatablog") %>%
meta_viewport() %>%
meta_social(
title = "jollydata.blog",
url = "https://jollydata.blog/",
image = "https://jollydata.blog/resource/logo_dynamic.png",
image_alt = "The jolly data jolly in an ocean of data.",
og_type = "website",
og_author = c("Christian A. Gebhard"),
twitter_card_type = "summary",
twitter_creator = "@c_gebhard"
)
```
<div class="greeting">
This is my personal website, where I write about the exploration of open datasets, data visualization and other topics concerning `r fa(name = "r-project")` or `r fa(name = "python")`.
<br>
I want to share what I learn, while I sail across the vast oceans of data.
Check out the [**blog**](blog.html) for the latest posts!
<br>
You can find a [**gallery**](challenges.html) of my contributions to DataViz challenges and a collection of my ongoing [**projects**](projects.html) that might interest you.
</div>