Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

name: build
on:
- push
- pull_request

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
- published

env:
PYTHON_VERSION: 3.x
PYTHON_VERSION: 3.12

jobs:
publish_pypi:
Expand Down
4 changes: 2 additions & 2 deletions material/assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.08c56446.min.js.map",
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.1866c2a5.min.js",
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.1866c2a5.min.js.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.aba156d1.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.aba156d1.min.css.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.a7287fca.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.a7287fca.min.css.map",
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.f82dab86.min.css",
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.f82dab86.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.bd9ced1d.min.css",
Expand Down
4 changes: 4 additions & 0 deletions material/assets/stylesheets/main.a7287fca.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions material/assets/stylesheets/main.a7287fca.min.css.map

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions material/assets/stylesheets/main.aba156d1.min.css

This file was deleted.

1 change: 0 additions & 1 deletion material/assets/stylesheets/main.aba156d1.min.css.map

This file was deleted.

10 changes: 5 additions & 5 deletions material/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
{% if config and config.theme and config.theme.favicon %}
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}" type="{{ favicon_type }}">
{% endif %}
{% if config.product == "proxy" %}
{% if config.theme.product == "proxy" %}
<link rel="shortcut icon" href="{{ 'assets/images/logo-traefik-proxy-icon.svg' | url }}" type="image/svg+xml">
{% elif config.product == "enterprise" %}
{% elif config.theme.product == "enterprise" %}
<link rel="shortcut icon" href="{{ 'assets/images/logo-traefik-enterprise-icon.svg' | url }}" type="image/svg+xml">
{% elif config.product == "mesh" %}
{% elif config.theme.product == "mesh" %}
<link rel="shortcut icon" href="{{ 'assets/images/logo-traefik-mesh-icon.svg' | url }}" type="image/svg+xml">
{% endif %}
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-traefiklabs-100.0.24">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-traefiklabs-100.0.25">
{% endblock %}
{% block htmltitle %}
{% if page and page.meta and page.meta.title %}
Expand All @@ -49,7 +49,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.aba156d1.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.a7287fca.min.css' | url }}">
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.bd9ced1d.min.css' | url }}">
Expand Down
14 changes: 7 additions & 7 deletions material/partials/product-switcher.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<nav class="product-switcher">
<div class="menu-item-wrapper menu-item-wrapper--dropdown">
<a class="menu-item menu-item--with-icon">
{% if config.product == "proxy" %}
{% if config.theme.product == "proxy" %}
<img src="{{ 'assets/images/logo-traefik-proxy-logo.svg' | url }}" height="48px" width="auto" alt="Traefik Proxy">
{% elif config.product == "enterprise" %}
{% elif config.theme.product == "enterprise" %}
<img src="{{ 'assets/images/logo-traefik-enterprise-logo.svg' | url }}" height="48px" width="auto" alt="Traefik Enterprise">
{% elif config.product == "hub" %}
{% elif config.theme.product == "hub" %}
<img src="{{ 'assets/images/logos-traefik-hub-horizontal.svg' | url }}" height="48px" width="auto" alt="Traefik Hub">
{% elif config.product == "mesh" %}
{% elif config.theme.product == "mesh" %}
<img src="{{ 'assets/images/logo-traefik-mesh-logo.svg' | url }}" height="48px" width="auto" alt="Traefik Mesh">
{% endif %}
<span class="icon">
Expand All @@ -23,7 +23,7 @@
<div class="nav-dropdown-menu-wrapper">
<div class="dm-header">Product Documentation</div>
<div class="dm-items">
{% if config.product != "proxy" %}
{% if config.theme.product != "proxy" %}
<div class="dm-item">
<div class="dmi-image proxy">
<img src="{{ 'assets/images/traefik-proxy-logo.svg' | url }}" alt="Traefik Proxy">
Expand All @@ -35,7 +35,7 @@
</div>
</a>
</div>
{% endif %} {% if config.product != "traefik-hub" %}
{% endif %} {% if config.theme.product != "traefik-hub" %}
<div class="dm-item">
<div class="dmi-image hub">
<img src="{{ 'assets/images/traefik-hub-logo-white.svg' | url }}" alt="Traefik Hub">
Expand All @@ -47,7 +47,7 @@
</div>
</a>
</div>
{% endif %} {% if config.product != "enterprise" %}
{% endif %} {% if config.theme.product != "enterprise" %}
<div class="dm-item dm-item--traefikee">
<div class="dmi-image enterprise">
<img src="{{ 'assets/images/traefik-enterprise-logo.svg' | url }}" alt="Traefik Enterprise">
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mkdocs-traefiklabs",
"version": "100.0.24",
"version": "100.0.25",
"description": "A Traefik Labs branded Material Design theme for MkDocs",
"keywords": [
"mkdocs",
Expand Down