about summary refs log tree commit diff
path: root/src/contact.html
diff options
context:
space:
mode:
authorhanemile <hanemile@protonmail.com>2019-01-30 15:13:34 +0100
committerhanemile <hanemile@protonmail.com>2019-01-30 15:13:34 +0100
commitc87e6be21b06404476b6446039e2fc1545462a49 (patch)
treee70d469843a707c2f28974d1605c06c2944be717 /src/contact.html
parent73b4241be036f0d2b2c8e7a27290fff88d469611 (diff)
added content to the contact page and linked it from the other pages
Diffstat (limited to 'src/contact.html')
-rw-r--r--src/contact.html116
1 files changed, 116 insertions, 0 deletions
diff --git a/src/contact.html b/src/contact.html
new file mode 100644
index 0000000..540a44f
--- /dev/null
+++ b/src/contact.html
@@ -0,0 +1,116 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+    <meta name="description" content="">
+    <meta name="author" content="">
+
+    <title>Galaxy Simulator</title>
+
+    <!-- Bootstrap core CSS -->
+    <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
+
+    <!-- Custom styles for this template -->
+    <link href="css/small-business.css" rel="stylesheet">
+
+</head>
+
+<body>
+
+<!-- Navigation -->
+<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
+    <div class="container">
+        <a class="navbar-brand" href="#">Galaxy Simulator</a>
+        <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="navbarResponsive">
+            <ul class="navbar-nav ml-auto">
+
+                <li class="nav-item">
+                    <a class="nav-link" href="index.html">Home</a>
+                </li>
+
+                <li class="nav-item">
+                    <a class="nav-link" href="about.html">About</a>
+                </li>
+
+                <li class="nav-item active">
+                    <a class="nav-link" href="#">Contact
+                        <span class="sr-only">(current)</span>
+                    </a>
+                </li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<!-- Page Content -->
+<div class="container">
+
+    <!-- Page Heading/Breadcrumbs -->
+    <h1 class="mt-4 mb-3">Contact</h1>
+
+    <ol class="breadcrumb">
+        <li class="breadcrumb-item">
+            <a href="index.html">Home</a>
+        </li>
+        <li class="breadcrumb-item active">Contact</li>
+    </ol>
+
+
+    <!-- content row -->
+    <div class="row">
+
+        <div class="col-md-4 mb-4">
+            <div class="card h-100">
+                <div class="card-body">
+                    <h2 class="card-title">Telegram</h2>
+                    <p class="card-text">This is the best way of asking questions: quick, fast and reliable!</p>
+                </div>
+                <div class="card-footer">
+                    <a href="http://t.me/hanemile" class="btn btn-primary">Write a telegram</a>
+                </div>
+            </div>
+        </div>
+
+        <div class="col-md-4 mb-4">
+            <div class="card h-100">
+                <div class="card-body">
+                    <h2 class="card-title">Git</h2>
+                    <p class="card-text">Found a bug, error or some other problem and want to inform me? Create a new issue!</p>
+                </div>
+                <div class="card-footer">
+                    <a href="https://git.darknebu.la/GalaxySimulator/GalaxySimulator-docker-compose/issues/new" class="btn btn-primary">Create a new issue</a>
+                </div>
+            </div>
+        </div>
+
+    </div>
+    <!-- /.row -->
+
+</div>
+<!-- /.container -->
+
+<!-- Footer -->
+<footer class="page-footer font-small blue">
+
+    <!-- Copyright -->
+    <div class="footer-copyright text-center py-3">Est. 2018:
+        <a href="https://mdbootstrap.com/education/bootstrap/">emile.space</a>
+    </div>
+    <!-- Copyright -->
+
+</footer>
+<!-- Footer -->
+
+<!-- Bootstrap core JavaScript -->
+<script src="vendor/jquery/jquery.min.js"></script>
+<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
+
+</body>
+
+</html>