mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-18 14:27:54 -05:00
Fixed relative_url linking; fixes tooltips and color modes. Add README. Readability improvement.
12 lines
885 B
HTML
12 lines
885 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<base href="{{ site.url }}">
|
|
<title>{% if page.title %}{{ page.title | escape }} · {% endif %}{{ site.title | escape }}</title>
|
|
<meta name="description" content="{{ site.description }}">
|
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link rel="icon" href="{{ '/favicon.ico' | relative_url }}" sizes="any">
|
|
<link rel="icon" href="{{ '/icon.svg' | relative_url }}" type="image/svg+xml">
|
|
<meta name="theme-color" content="#2c3e50">
|