add: static css files; add: content in about.html
This commit is contained in:
parent
393d3116d7
commit
8e1e5b0693
8 changed files with 14 additions and 15 deletions
4
app.py
4
app.py
|
@ -1,9 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from flask import Flask, render_template, redirect, url_for
|
from flask import Flask, render_template, redirect, url_for
|
||||||
import os
|
|
||||||
|
|
||||||
services = ("httpd", "nsd", "pf", "ntp")
|
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
navigation = {"Imprint":"imprint"}
|
navigation = {"Imprint":"imprint"}
|
||||||
@app.route("/imprint")
|
@app.route("/imprint")
|
||||||
|
|
2
requirements.txt
Normal file
2
requirements.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
flask
|
||||||
|
waitress
|
0
css/pico.min.css → static/css/pico.min.css
vendored
0
css/pico.min.css → static/css/pico.min.css
vendored
|
@ -4,18 +4,19 @@
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p>Profession: Linux Systems Engineer</p>
|
<p>Profession: Linux Systems Engineer</p>
|
||||||
<p>Name: Adrian Erik Hoemann</p><p>Experience: 3Y</p>
|
<p>Name: Adrian Erik Hoemann</p><p>Experience: 3Y</p>
|
||||||
<p>Languages: German, English</p>
|
<p>Languages: German, English</p>
|
||||||
<p>Programming languages: Python, Bash, POSIX Shell</p>
|
<p>Programming languages: Python, Bash, POSIX Shell, Powershell</p>
|
||||||
<p>Markup languages: HTML, MD</p>
|
<p>Markup languages: HTML, MD</p>
|
||||||
<p>Structure languages: JSON, XML, YAML, TOML</p>
|
<p>Structure languages: JSON, XML, YAML, TOML</p>
|
||||||
<p>Query languages: SQL</p>
|
<p>Query languages: SQL(MariaDB, SQLite3)</p>
|
||||||
<p>Services managed: SSH, DNS, DHCP, PF, UFW, NF-Tables,
|
<p>Services managed: SSH, DNS, DHCP, PF, UFW, NF-Tables,
|
||||||
RDP(XRDP, Microsoft RDP), Webserver(Apache24, Nginx, OpenBSD-httpd,
|
RDP(XRDP, Microsoft RDP), Webserver(Apache24, Nginx, OpenBSD-httpd,
|
||||||
Caddy), SMB, NFS, FTP, WebDAV, Hypervisors(VMWare ESXi,
|
Caddy), SMB, NFS, FTP, WebDAV, Hypervisors(VMWare ESXi,
|
||||||
libvirt(QEMU/KVM), QEMU, Hyper-V), Kubernetes, Containers(LXD, Docker,
|
libvirt(QEMU/KVM), QEMU, Hyper-V), Kubernetes, Containers(LXD, Docker,
|
||||||
Podman, Jails)</p>
|
Podman, Jails), Mail Transfer Agents(Postfix, Grommunio), Mail Clients(Outlook, Thunderbird, Grommunio Web), Git(Git, Gitlab, Forgejo)</p>
|
||||||
<p>Operating systems managed: Debian, Ubuntu, RangeeOS, FreeBSD, OPNSense, OpenBSD, NixOS</p>
|
<p>Hardware managed: NAS', SAN's, Hypervisors, Firewalls, Thin Clients, SIP Appliances, MegaRAID, LSI, Cisco Switches</p>
|
||||||
|
<p>Operating systems managed: Debian, Ubuntu, OpenSUSE, RangeeOS, FreeBSD, OPNSense, OpenBSD, NixOS, Windows(Pro/Server), Cisco IOS, ESXi 7, Proxmox VE, Proxmox MG</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
<meta name="description" content="the main Adrianux page">
|
<meta name="description" content="the main Adrianux page">
|
||||||
<link rel="canonical" href="https://adrianux.net/">
|
<link rel="canonical" href="https://adrianux.net/">
|
||||||
<link rel="stylesheet" href="{{ url_for('css, filename='pico.min.css') }}" />
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/pico.css') }}" />
|
||||||
<title>{% block title %}{% endblock %} - Adrianux.net</title>
|
<title>{% block title %}{% endblock %} - Adrianux.net</title>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in a new issue