Skip to content

Commit 4e38d28

Browse files
committed
refactor: rebrand from bodnar.dev to daniel.bodnar.sh
1 parent cced712 commit 4e38d28

File tree

7 files changed

+83
-17
lines changed

7 files changed

+83
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# bodnar.dev
1+
# daniel.bodnar.sh
22

33
Personal website and portfolio for Daniel Bodnar - Platform Engineer, Systems Architect, SRE, and Linux Evangelist.
44

@@ -27,7 +27,7 @@ This site is built with [Eleventy](https://www.11ty.dev/) (11ty), a simple and p
2727

2828
```bash
2929
# Clone the repository
30-
git clone https://github.com/danielbodnar/bodnar.dev
30+
git clone https://github.com/danielbodnar/daniel.bodnar.sh
3131

3232
# Install dependencies
3333
bun install
@@ -65,7 +65,7 @@ Edit `settings.json` to customize:
6565
## Project Structure
6666

6767
```
68-
bodnar.dev/
68+
daniel.bodnar.sh/
6969
├── _data/ # Global data files
7070
├── _includes/ # Layout templates
7171
├── core/ # Core assets (CSS, JS, fonts)
@@ -87,7 +87,7 @@ All page content is sourced from:
8787
- **Email:** [[email protected]](mailto:[email protected])
8888
- **GitHub:** [@danielbodnar](https://github.com/danielbodnar)
8989
- **LinkedIn:** [danielbodnar](https://linkedin.com/in/danielbodnar)
90-
- **Website:** [bodnar.sh](https://bodnar.sh)
90+
- **Website:** [daniel.bodnar.sh](https://daniel.bodnar.sh)
9191

9292
## License
9393

_data/libdocSystem.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"activeAnchorClass": ""
1111
},
1212
"widthSidebar": 300,
13-
"widthContent": 700,
13+
"widthContent": 1200,
1414
"icomoonIconSize": 32,
1515
"pluginsParameters": {
1616
"eleventyImageTransform": {
@@ -28,7 +28,7 @@
2828
}
2929
}
3030
},
31-
"productionUrl": "bodnar.dev",
31+
"productionUrl": "daniel.bodnar.sh",
3232
"preferences": {
3333
"colorSchemes": {
3434
"choices": [

_includes/libdoc_page.liquid

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<link rel="stylesheet" href="/core/assets/css/ds__dark_mode.css" media="(prefers-color-scheme: dark)" id="libdoc_dark_mode_css">
6565
<link rel="stylesheet" href="/core/assets/css/hljs/night-owl.css">
6666
<link rel="stylesheet" href="/core/assets/fonts/icomoon/style.css">
67+
<link rel="stylesheet" href="/core/assets/css/custom.css">
6768
<style>
6869
:root {
6970
--libdoc-image-background-color-light-mode: {{ libdocConfig.imgBgColorLightMode }};
@@ -419,10 +420,10 @@
419420
{% endif %}
420421
<div class="w-100" d-none="sm,md"></div>
421422
<div class="pl-5 | bbwidth-1 bbstyle-dashed bcolor-neutral-500" w-100="sm,md"></div>
422-
<a href="https://bodnar.sh"
423+
<a href="https://daniel.bodnar.sh"
423424
target="_blank"
424425
class="d-flex ai-center gap-2 | pl-2 pr-2 | fvs-wght-400 fs-2 lsp-3 lh-3 td-none ws-nowrap">
425-
bodnar.dev
426+
daniel.bodnar.sh
426427
</a>
427428
</nav>
428429
</footer>

core/assets/css/custom.css

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/* Custom styles for bodnar.dev - Fluid content layout */
2+
3+
/* Override content width constraints for fluid layout */
4+
:root {
5+
--ita-widths-content: 100%;
6+
--ita-widths-main-container-max: none;
7+
}
8+
9+
/* Make main content fluid */
10+
main > * {
11+
max-width: calc(100% - 2 * var(--ita-spacings-5));
12+
}
13+
14+
/* Adjust container for fluid layout on larger screens */
15+
@media (min-width: 960px) {
16+
main > * {
17+
max-width: calc(100% - 2 * var(--ita-spacings-9));
18+
}
19+
20+
/* Keep tables readable */
21+
main table {
22+
max-width: 100%;
23+
}
24+
25+
/* Adjust video container */
26+
main video {
27+
max-width: 100%;
28+
}
29+
30+
/* Floating TOC position adjustment for fluid layout */
31+
#floating_toc_container {
32+
right: var(--ita-spacings-5);
33+
}
34+
35+
/* GTT button position adjustment */
36+
#gtt_btn {
37+
right: var(--ita-spacings-5);
38+
}
39+
}
40+
41+
/* Ensure proper readability for text content */
42+
main p,
43+
main li,
44+
main dd,
45+
main blockquote {
46+
max-width: 80ch; /* Optimal reading width */
47+
}
48+
49+
/* Allow full width for code blocks, tables, and images */
50+
main > pre,
51+
main > .table-wrapper,
52+
main > figure,
53+
main > picture,
54+
main > iframe,
55+
main > aside {
56+
max-width: calc(100% - 2 * var(--ita-spacings-5));
57+
}
58+
59+
@media (min-width: 960px) {
60+
main > pre,
61+
main > .table-wrapper,
62+
main > figure,
63+
main > picture,
64+
main > iframe,
65+
main > aside {
66+
max-width: calc(100% - 2 * var(--ita-spacings-9));
67+
}
68+
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "bodnar.dev",
2+
"name": "daniel.bodnar.sh",
33
"version": "1.0.0",
44
"description": "Personal website and portfolio for Daniel Bodnar - Platform Engineer, Systems Architect, and SRE",
55
"main": "index.js",
@@ -22,9 +22,9 @@
2222
"type": "module",
2323
"repository": {
2424
"type": "git",
25-
"url": "https://github.com/danielbodnar/bodnar.dev"
25+
"url": "https://github.com/danielbodnar/daniel.bodnar.sh"
2626
},
27-
"homepage": "https://bodnar.dev",
27+
"homepage": "https://daniel.bodnar.sh",
2828
"dependencies": {
2929
"@11ty/eleventy": "^3.0.0",
3030
"@11ty/eleventy-img": "^6.0.1",

settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"faviconUrl": "/assets/favicon.png",
66
"blogTitle": "Writing",
77
"blogDescription": "Thoughts on infrastructure, systems engineering, DevOps, and building things that scale.",
8-
"productionUrl": "https://bodnar.dev",
8+
"productionUrl": "https://daniel.bodnar.sh",
99
"customLinks": [
1010
{
1111
"url": "https://github.com/danielbodnar",
@@ -28,5 +28,5 @@
2828
"text": "RSS"
2929
}
3030
],
31-
"editThisPageRootUrl": "https://github.com/danielbodnar/bodnar.dev/blob/main"
31+
"editThisPageRootUrl": "https://github.com/danielbodnar/daniel.bodnar.sh/blob/main"
3232
}

wrangler.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
name = "bodnar-dev"
1+
name = "daniel-bodnar-sh"
22
pages_build_output_dir = "_site"
3-
4-
[build]
5-
command = "npm run build"

0 commit comments

Comments
 (0)