-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
83 lines (67 loc) · 3.03 KB
/
Copy pathabout.html
File metadata and controls
83 lines (67 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126965546-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-126965546-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Simple application that enables you to train shortcuts of your favorite software, by using pre defined training sessions or creating your own.">
<meta name="google-site-verification" content="8iXxt7E516gE1A1Tdk40yLv1jM8O7PNq8-Zf9EeJqU4" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Shortcutlab</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/normalize-8.0.1.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:normal,bold" rel="stylesheet" />
</head>
<body>
<div class="root">
<div class="logo-container">
<img class="logo" src="./img/cat.svg">
</div>
<h2>
<p class="about-title">Hey there!</p>
</h2>
<p class="about-description">We love efficiency and of course free stuff. This is why
we created Shortcutlab.</p>
<p class="about-description">It is a free and open source application that enables you to train
shortcuts of any application
by using customizable JSON files.</p>
<p class="about-description">Currently it is maintained by a single developer, so if you enjoy using it and
would like to contribute
please drop a message at our repository available <a
href="https://github.com/ceduliocezar/shortcutlab#shortcutlab" target="_blank">here</a>.
</p>
<p class="about-description">
You can contribute submiting your own labs, help to improve our UI and UX or implementing features that you
want to see in the application.
</p>
<h2>
<p class="shortcut-lab-version"></p>
</h2>
</div>
<footer>
<div class="footer-content">
<nav>
<div class="footer-section">Shortcutlab</div>
<a class="footer-link" href="./index.html">Home</a>
<a class="footer-link" href="./about.html">About</a>
</nav>
<nav>
<div class="footer-section">Learn and Contribute</div>
<a class="footer-link" href="https://github.com/ceduliocezar/shortcutlab#create-your-own-lab"
target="_blank">How
do I create my own lab?</a>
<a class="footer-link" target="_blank" href="https://github.com/ceduliocezar/shortcutlab">Source
code</a>
</nav>
</div>
</footer>
<script type="text/javascript" src="./js/version.js"></script>
</body>
</html>