Skip to content

Commit 445aca4

Browse files
committed
fix(content): Small updates to index page, fix resume link issue, thumbnails, etc.
Update broken links in readme.
1 parent 6dfff1c commit 445aca4

7 files changed

Lines changed: 42 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
This is my blog, powered by [quarto](https://quarto.org).
2-
For more details about site content see [the deployed instance](acederberg.io).
2+
For more details about site content see [the deployed instance](https://acederberg.io).
33
To see coverage reports, got see [the artifacts on github pages](https://acederberg.github.io/quarto-maths/).
44

55

blog/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ For inquiries, please reach out to me at `adrn.cederberg123@gmail.com` or `@_ace
189189
This site deprecates my previous blog, for which I made the [captura-text](https://github.com/acederberg/captura-text) plugin.
190190
The content on the deprecated site can be found in [another repo](https://github.com/acederberg/captura-text-portfolio-assets).
191191

192-
Go to (posts)[#posts].
192+
Go to [posts](/#landing-page-posts-content).
193193

194194
## Reporting Issues
195195

blog/posts/iconify/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Building and Using a Custom Iconify Image Set For Mermaid
3-
image: https://bucket.acederberg.io/thumbnails/iconify.png
3+
image: https://acederbergio-object-storage.us-lax-1.linodeobjects.com/thumbnails/iconify.png
44
format:
55
html:
66
include-in-header:

blog/posts/keywords/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Basic Natural Language Processing in `Python` {{< iconify devicon python >}}
3-
image: https://bucket.acederberg.io/thumbnails/keywords.jpg
3+
image: https://acederbergio-object-storage.us-lax-1.linodeobjects.com/thumbnails/keywords.jpg
44
live:
55
quarto:
66
reload: true

blog/posts/neovim-queries-case-study/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: How to Write Custom Neovim Queries
33
subtitle: A Case-Study using Quarto
4-
image: https://bucket.acederberg.io/thumbnails/nvim-queries-and-highlights.png
4+
image: https://acederbergio-object-storage.us-lax-1.linodeobjects.com/thumbnails/nvim-queries-and-highlights.png
55
keywords:
66
- neovim
77
- lua

blog/test-0.qmd

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: Testing Columns
3+
---
4+
5+
```{=html}
6+
<div class="
7+
<div class="g-col-4">
8+
<div class="top-50 end-50 position-absolute">
9+
In Progress
10+
</div>
11+
<div style="filter: blur(5px);">
12+
<div class="d-flex">
13+
<!-- Adds the tradmark logo -->
14+
<div class="position-relative d-inline-block mx-auto">
15+
<img
16+
src="https://training.linuxfoundation.org/wp-content/uploads/2019/03/kubernetes-ckad-color-300x294.png"
17+
class="img-fluid mx-auto"
18+
style="height: 128px"
19+
>
20+
</img>
21+
</div>
22+
</div>
23+
<section class="text-center">
24+
<h4 class="text-center">Certificied Kubernetes Application Developer</h4>
25+
<p class="text-muted fst-italic">In progress.</p>
26+
</section>
27+
</div>
28+
</div>
29+
<div class="g-col-2"></div>
30+
31+
```

blog/themes/landing-page.scss

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ $extraColors : ("blue": $blue,
175175

176176
#landing-page-banner-content {
177177
@include make-container(0px);
178-
background: radial-gradient(rgba(255, 212, 59, 0.07), transparent 75%);
178+
/* background: radial-gradient(rgba(255, 212, 59, 0.07), transparent 75%); */
179179

180180
#landing-page-banner-title {
181181
@include make-row();
@@ -277,14 +277,17 @@ $extraColors : ("blue": $blue,
277277

278278
/* This is the about sections */
279279
#landing-page-about {
280-
@include landing-page-section();
280+
@include landing-page-section($padding: 0.5rem);
281281

282282
$color: var(--bs-teal);
283283
background: url(daimond.svg), radial-gradient(var(--bs-black), var(--bs-gray-900) 110%);
284284
backdrop-filter: blur(5px);
285285

286+
border: 3px solid $color;
287+
box-shadow: 0 0 15px $color, inset 0 0 15px $color;
288+
286289
#landing-page-about-content {
287-
@include landing-page-section-inner();
290+
@include landing-page-section-inner($padding: 1rem, $border-radius: 1.55rem);
288291

289292
border: 3px solid $color;
290293
box-shadow: 0 0 15px $color, inset 0 0 15px $color;

0 commit comments

Comments
 (0)