11<!DOCTYPE html>
2- <html lang =" en" >
32
4- <head >
5- <meta charset =" UTF-8" >
6- <meta name =" viewport" content =" width=device-width, initial-scale=1.0" >
7- <title >Welcome Page</title >
8- <style >
9- @keyframes slideInFromLeft {
10- 0% {
11- transform : translateX (-10% );
12- }
13-
14- 100% {
15- transform : translateX (10% );
16- }
17- }
18-
19- @keyframes textShadow {
20- 50% {
21- text-shadow : 0 0 20px #000 ;
22- }
23- }
24-
25- @keyframes move-it {
26- to {
27- background-position : 100px 0px ;
28- }
29- }
3+ <html xmlns =" http://www.w3.org/1999/xhtml" id =" html" class =" no-js" lang =" en_US" >
304
31- html ,
32- body {
33- height : 100% ;
34- overflow : hidden ;
35- }
36-
37- body {
38- background : repeating-linear-gradient (45deg ,
39- #014126 ,
40- #014126 5% ,
41- #025c37 5% ,
42- #025c37 10% );
43- background-size : 100px 100px ;
44- animation : move-it 2s linear infinite ;
45- font-family : Arial , sans-serif ;
46- display : flex ;
47- justify-content : center ;
48- align-items : center ;
49- }
50-
51- h1 {
52- color : rgb (255 , 255 , 255 );
53- text-align : center ;
54- animation : 2s ease-in-out 0s infinite slideInFromLeft alternate-reverse , 3s ease-in-out 0s infinite textShadow;
55- filter : drop-shadow (0 0 10px rgb (0 , 255 , 128 ));
56- font-size : 40px ;
57- font-size : 5 dvmax;
58- }
59- </style >
5+ <head >
6+ <meta http-equiv =" Content-Type" content =" text/html; charset=utf-8" >
7+
8+ <title >LOREX - Osmand Webtracking Frontend</title >
9+ <meta name =" viewport" content =" width=device-width, initial-scale=1" >
10+
11+ <meta name =" color-scheme" content " dark light" >
12+
13+ <meta property =" og:title" content =" LOREX - Osmand Webtracking Frontend" >
14+ <meta name =" description" content =" LOREX - Based on leaflet, openstreetmap React and Express, save your webtracking and display it on a map" >
15+ <meta property =" og:description" content =" LOREX - Based on leaflet, openstreetmap React and Express, save your webtracking and display it on a map" >
16+ <meta property =" og:image" content =" <%= locals.root %>/icon.png" >
17+ <meta property =" og:image:alt" content =" Image description" >
18+ <meta property =" og:locale" content =" en_US" >
19+ <meta property =" og:type" content =" website" >
20+ <meta name =" twitter:card" content =" summary_large_image" >
21+ <meta property =" og:url" content =" <%= locals.root %>" >
22+
23+ <link rel =" stylesheet" href =" /css/base.css" >
24+ <link rel =" stylesheet" href =" /css/colors.css" >
25+ <link rel =" icon" href =" favicon.ico" >
26+
27+ <link rel =" apple-touch-icon" href =" /icon.png" >
28+ <meta name =" apple-mobile-web-app-capable" content =" yes" >
29+ <meta name =" apple-mobile-web-app-status-bar-style" content =" black" >
6030</head >
6131
6232<body >
63- <div id =" root" >
64- <h1 >Welcome</h1 >
65- </div >
33+ <div id =" react-root" >
34+ <h1 >Welcome</h1 >
35+ </div >
36+
6637 <script src =" /js/bundle.js" ></script >
67- </body >
68-
69- </html >
38+ </body >
0 commit comments