-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
43 lines (41 loc) · 1.14 KB
/
index.qmd
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
---
title: "Learning Queue"
subtitle: "My personal space where I will collect projects and codes as I keep learning more about Data Science."
listing:
contents: posts
sort: "date desc"
type: default
fields: [image, date, title, description, categories]
categories: true
sort-ui: true
filter-ui: true
page-layout: full
comments: false
title-block-banner: "#00000000"
title-block-banner-color: "rgba(255, 255, 255, 0.9)"
include-in-header:
- text: |
<style>
#title-block-header.quarto-title-block.default .quarto-title-meta {
color: rgba(255, 255, 255, 0.9);
}
.quarto-title-block .quarto-title-banner {
height: 0; /* hide */
}
#title-block-header {
background:
/* top, transparent black, faked with gradient */
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
/* bottom, image */
url(home.jpeg);
background-size: cover;
background-position-y: center;
height: 350px;
opacity: 0.9; /* image opacity, lower means lighter */
z-index: -1;
}
</style>
---