-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.Rmd
More file actions
58 lines (52 loc) · 1.19 KB
/
about.Rmd
File metadata and controls
58 lines (52 loc) · 1.19 KB
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
---
title: "About Me"
description: |
Some additional details about the website |
It looks nice typing anything here and generating using build
Everything converting to HTML tags
output:
html_document:
code_folding: show
theme:
bg: "#202123"
fg: "#B8BCC2"
primary: "#EA80FC"
base_font:
google: Prompt
heading_font:
google: Proza Libre
version: 3
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
if (requireNamespace("thematic"))
thematic::thematic_rmd(font = "auto")
```
<div class="collage">
<div class="photo">
<img src="photo1.jpg" alt="Photo 1">
<div class="description">Description for Photo 1</div>
</div>
<div class="photo">
<img src="photo2.jpg" alt="Photo 2">
<div class="description">Description for Photo 2</div>
</div>
<div class="photo">
<img src="photo3.jpg" alt="Photo 3">
<div class="description">Description for Photo 3</div>
</div>
</div>
<style>
.collage {
display: flex;
flex-wrap: wrap;
}
.photo {
flex: 0 0 33.33%;
padding: 10px;
text-align: center;
}
.description {
margin-top: 10px;
}
</style>