Skip to content

Commit 01dd3cc

Browse files
committed
chore: add global note
1 parent 8574663 commit 01dd3cc

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

Diff for: docs/css/extra.css

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.announcement {
2+
padding: 10px 15px;
3+
background-color: #ffeb3b;
4+
color: #000;
5+
font-weight: bold;
6+
margin-bottom: 20px;
7+
text-align: center;
8+
font-size: 16px;
9+
border-radius: 4px;
10+
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
11+
}

Diff for: docs/index.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
Welcome to the official documentation for Poweradmin, a web-based administration tool for PowerDNS.
44

5-
> **Note:** This documentation is still in progress, not reviewed properly, and might contain some errors or outdated images. It's intended for the upcoming 4.0.0 release, so configuration settings might be different from previous versions.
6-
75
## Overview
86

97
Poweradmin is a friendly web interface for managing PowerDNS. It allows you to manage DNS zones and records with ease.

Diff for: mkdocs.yml

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ theme:
1717
- search.highlight
1818
extra:
1919
- screenshots
20+
custom_dir: overrides
21+
22+
extra_css:
23+
- css/extra.css
24+
25+
extra:
26+
announcement: "Note: This documentation is still in progress, not reviewed properly, and might contain some errors or outdated images. It's intended for the upcoming 4.0.0 release, so configuration settings might be different from previous versions."
2027

2128
validation:
2229
links:

Diff for: overrides/main.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{% extends "base.html" %}
2+
3+
{% block content %}
4+
<div class="announcement">
5+
{{ config.extra.announcement }}
6+
</div>
7+
{{ super() }}
8+
{% endblock %}

0 commit comments

Comments
 (0)