Skip to content

Commit 96055f8

Browse files
authored
feat: Update theme styles and add related content section (#96)
1 parent 0070a2b commit 96055f8

File tree

15 files changed

+1050
-189
lines changed

15 files changed

+1050
-189
lines changed

.github/workflows/tests-pr.yaml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/tests.yaml

Lines changed: 0 additions & 46 deletions
This file was deleted.

assets/built/prism.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/built/screen.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/prism.css

Lines changed: 930 additions & 6 deletions
Large diffs are not rendered by default.

assets/css/screen.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,13 @@ p {
9494
margin-bottom: 0.1rem;
9595
/* Optional margin for spacing */
9696
}
97-
97+
.contenido a {
98+
text-decoration: underline;
99+
}
100+
.contenido a:hover {
101+
text-decoration: underline;
102+
color: var(--ghost-accent-color);
103+
}
98104
/* Grid layout */
99105
.grid-container {
100106
display: grid;

default.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
</head>
2929

30-
<body class="{{body_class}} bg-gradient-to-r from-darker via-darker to-dark">
30+
<body class="{{body_class}}" style="background:{{@custom.background_color }}!important;">
3131

3232
{{> "components/nav"}}
3333

locales/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@
3030
"% min read": "% min read",
3131
"Search": "Search in SREDevOps.org",
3232
"Register with Email": "Register with Email",
33-
"View all": "View all"
33+
"View all": "View all",
34+
"Related content": "Related content"
3435
}

locales/es.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@
3434
"Older posts": "Posts antiguos",
3535
"Share this post:": "Comparte!",
3636
"Register with Email": "Suscríbete con tu correo",
37-
"View all": "Ver más"
37+
"View all": "Ver más",
38+
"Related content": "Contenido relacionado"
3839
}

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sredevopsorg-ghost-theme",
33
"description": "Ghost v6 Theme made for SREDevOps.org (https://www.sredevops.org) based on Tailwind CSS v3, responsive, dark color schema, SVG icons, sidebar + footer navgation, customized tags and recommendations pages.",
44
"demo": "https://www.sredevops.org",
5-
"version": "1.3.3",
5+
"version": "1.3.4",
66
"engines": {
77
"ghost": ">=5.0.0"
88
},
@@ -43,7 +43,7 @@
4343
"devDependencies": {
4444
"@tailwindcss/forms": "^0.5.10",
4545
"@tailwindcss/typography": "^0.5.19",
46-
"autoprefixer": "^10.4.21",
46+
"autoprefixer": "^10.4.22",
4747
"cssnano": "7.1.2",
4848
"gulp": "^5.0.1",
4949
"gulp-concat": "2.6.1",
@@ -65,6 +65,12 @@
6565
"posts_per_page": 12,
6666
"card_assets": true,
6767
"custom": {
68+
"background_color": {
69+
"type": "color",
70+
"default": "#0f172a",
71+
"description": "Background color for the theme",
72+
"group": "homepage"
73+
},
6874
"lazy_images": {
6975
"type": "boolean",
7076
"default": false,

0 commit comments

Comments
 (0)