-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (63 loc) · 2.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GEZCTHQENJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-GEZCTHQENJ');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Basic Page Needs
==================================================-->
<title>DeltaXML OS Projects</title>
<meta name="description" content="Home page of DeltaXML Projects" />
<meta name="author" content="Philip Fearon" />
<!-- Mobile Specific Metas
==================================================-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- CSS
==================================================-->
<link rel="stylesheet" href="./resources/base.css" />
<link rel="stylesheet" href="./resources/skeleton.css" />
<link rel="stylesheet" href="./resources/layout.css" />
<link rel="stylesheet" href="./resources/custom.css" />
<!-- Favicons
==================================================-->
<link rel="icon"
href="https://www.deltaxml.com/wp-content/uploads/2016/11/cropped-Green-Thumbnail-Website-32x32.png"
sizes="32x32">
</head>
<body>
<div class="colorBar"> </div>
<div class="topbar">
<div class="container">
<div class="six columns" style="padding-left: 20px;">
<a href="https://www.deltaxml.com/">
<img src="resources/tiny-white-logo.png" style="float: left; padding-top: 30px;" />
</a>
</div>
<div class="six columns topTitle">
<h3 class="remove-bottom" style="color: white">DeltaXML Projects</h3>
<h5 style="color: white;">Documentation</h5>
</div>
</div>
</div>
<div class="wrapper">
<nav>
<ul>
<li><a class="active" href="index.html">Welcome</a></li>
<li><a href="vscode-xslt-xpath/">VSCode XSLT/XPath</a></li>
</ul>
</nav>
<div class="main">
<h2 class="pageTitle">Welcome</h2>
<p>This is the home page for documentation covering DeltaXML's open source projects.</p>
<p><a href="vscode-xslt-xpath/">Visual Studio Code Extension for XSLT/XPath</a></p>
</div>
</div>
</div>
</body>
</html>