6 Commits

Author SHA1 Message Date
c2c0626dac chore(deps): update ghcr.io/renovatebot/renovate docker tag to v41.66.2 2025-08-13 11:22:22 +00:00
5488cdbc1e fix: align iframe in footer
All checks were successful
renovate / renovate (push) Successful in 1m25s
Build and Deploy / Build-Container-Image (push) Successful in 33s
2025-08-13 13:21:52 +02:00
fce5e91938 fix: disable content security policy
All checks were successful
Build and Deploy / Build-Container-Image (push) Successful in 34s
renovate / renovate (push) Successful in 2m5s
2025-08-12 19:57:48 +02:00
b699c43696 ci: update deployment version
All checks were successful
renovate / renovate (push) Successful in 2m11s
Build and Deploy / Build-Container-Image (push) Successful in 35s
2025-08-12 19:50:14 +02:00
54b2fe11e1 feat: add analytics script
Some checks failed
renovate / renovate (push) Has been cancelled
2025-08-12 19:49:35 +02:00
57c8413738 ci: update deployment version
All checks were successful
renovate / renovate (push) Successful in 1m10s
2025-08-12 10:27:03 +02:00
4 changed files with 6 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.62.4 container: ghcr.io/renovatebot/renovate:41.66.2
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: renovate - run: renovate

View File

@@ -17,6 +17,6 @@ spec:
spec: spec:
containers: containers:
- name: alexohneander-zola - name: alexohneander-zola
image: git.dev-null.rocks/alexohneander/alexohneander-zola:0.1.8 image: git.dev-null.rocks/alexohneander/alexohneander-zola:0.1.12
ports: ports:
- containerPort: 80 - containerPort: 80

View File

@@ -67,7 +67,7 @@
</nav> </nav>
<p align="center"> <p align="center">
<iframe src="https://tryhackme.com/api/v2/badges/public-profile?userPublicId=4027495" style='border:none;'></iframe> <iframe src="https://tryhackme.com/api/v2/badges/public-profile?userPublicId=4027495" style="border:none;width: 480px;height: 100px;"></iframe>
</p> </p>
{# Footer menu #} {# Footer menu #}
<nav class="nav-navs"> <nav class="nav-navs">

View File

@@ -131,7 +131,7 @@
<meta property="og:site_name" content="{{ config.title }}"> <meta property="og:site_name" content="{{ config.title }}">
{%- if macros_settings::evaluate_setting_priority(setting="enable_csp", page=page | default(value=""), section=section | default(value=""), default_global_value="true") == "true" -%} {%- if macros_settings::evaluate_setting_priority(setting="enable_csp", page=page | default(value=""), section=section | default(value=""), default_global_value="true") == "true" -%}
{%- include "partials/content_security_policy.html" -%} {# {%- include "partials/content_security_policy.html" -%} #}
{%- endif -%} {%- endif -%}
{%- if config.extra.theme_switcher and config.extra.theme_switcher == true -%} {%- if config.extra.theme_switcher and config.extra.theme_switcher == true -%}
@@ -176,4 +176,6 @@
{%- endif -%} {%- endif -%}
{%- endif -%} {%- endif -%}
{# Analytics Script #}
<script defer src="https://analytics.paas.wellcom.rocks/script.js" data-website-id="feaa9394-9ef8-4a5c-8671-884b00e67d7f"></script>
</head> </head>