Add app logo and favicon

This commit is contained in:
Mikei386
2026-06-22 16:20:48 +02:00
parent c00f70c03a
commit 26e1879104
5 changed files with 55 additions and 5 deletions
+7 -2
View File
@@ -4,14 +4,19 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>P-Touch Web Editor</title>
<link rel="icon" href="{{ url_for('static', filename='ptouch-web-logo.svg') }}" type="image/svg+xml">
<link rel="apple-touch-icon" href="{{ url_for('static', filename='ptouch-web-logo.svg') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="app-shell">
<header class="topbar">
<div class="brand">
<strong>P-Touch Web</strong>
<span>PT-P700 · <a href="{{ url_for('mobile') }}">Mobile</a></span>
<img src="{{ url_for('static', filename='ptouch-web-logo.svg') }}" alt="" aria-hidden="true">
<div>
<strong>P-Touch Web</strong>
<span>PT-P700 · <a href="{{ url_for('mobile') }}">Mobile</a></span>
</div>
</div>
<div class="toolbar" aria-label="Werkzeuge">
<button data-tool="text" title="Textfeld">Text</button>
+8 -3
View File
@@ -4,14 +4,19 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>P-Touch Mobile</title>
<link rel="icon" href="{{ url_for('static', filename='ptouch-web-logo.svg') }}" type="image/svg+xml">
<link rel="apple-touch-icon" href="{{ url_for('static', filename='ptouch-web-logo.svg') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='mobile.css') }}">
</head>
<body>
<main class="mobile-shell">
<header>
<div>
<h1>P-Touch Mobile</h1>
<p>PT-P700</p>
<div class="mobile-brand">
<img src="{{ url_for('static', filename='ptouch-web-logo.svg') }}" alt="" aria-hidden="true">
<div>
<h1>P-Touch Mobile</h1>
<p>PT-P700</p>
</div>
</div>
<a href="{{ url_for('index') }}">Editor</a>
</header>