Skip to content

Commit 87b5b9c

Browse files
committed
Moved all main documentation to a sub directory. Removed release notes from User Manual. Created a main index.html file with quick links. Added nav-bar to all generated pages. Created a make file for local testing.
1 parent 3baebff commit 87b5b9c

File tree

181 files changed

+330
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+330
-178
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*/index.html

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
default:
2+
asciidoctor -D . --backend=html5 -o latest/index.html -a stylesheet=../foundation.css -a docinfo=shared -a imagesdir=images latest/index.adoc
3+
sed -i '' -e '/<body.*/rnav-bar.html' latest/index.html
4+
asciidoctor -D . --backend=html5 -o release-notes/index.html -a stylesheet=../foundation.css -a docinfo=shared release-notes/index.adoc
5+
sed -i '' -e '/<body.*/rnav-bar.html' release-notes/index.html

custom.js

Whitespace-only changes.

docinfo.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.2/css/font-awesome.min.css">
22
<link rel="stylesheet" href="custom.css">
3+
<link rel="stylesheet" href="../nav-bar.css">
34
<script src="https://code.jquery.com/jquery-2.2.3.min.js"
4-
integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
5-
<script src="custom.js"></script>
5+
integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>

images/favicon.ico favicon.ico

File renamed without changes.

index.html

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<html lang="en">
2+
<head>
3+
<meta charset="UTF-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="icon" type="image/x-icon" href="./favicon.ico">
7+
<title>Mobi Documentation Site</title>
8+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.2/css/font-awesome.min.css">
9+
<link rel="stylesheet" href="./foundation.css">
10+
<link rel="stylesheet" href="./nav-bar.css">
11+
<style>
12+
.content {
13+
width: 100%;
14+
position: relative;
15+
top: 50%;
16+
transform: translateY(-50%);
17+
text-align: center;
18+
}
19+
.intro {
20+
overflow: hidden;
21+
height: auto;
22+
margin: auto;
23+
display: inline-block;
24+
width: 600px;
25+
}
26+
.intro p {
27+
margin-top: 2rem;
28+
}
29+
.content img.logo {
30+
width: 600px;
31+
display: block;
32+
}
33+
.quick-link i {
34+
font-size: 10rem;
35+
display: block;
36+
}
37+
.quick-link {
38+
float: left;
39+
margin: 0 3rem;
40+
}
41+
.quick-link a {
42+
color: #303f9f;
43+
display: inline-block;
44+
padding: 0.5rem;
45+
border-radius: 5px;
46+
}
47+
.quick-link a:hover {
48+
box-shadow: 5px 5px 10px #636363;
49+
}
50+
.quick-links {
51+
display: inline-block;
52+
}
53+
</style>
54+
</head>
55+
<body>
56+
<div class="nav-bar">
57+
<a class="img-link" href="/"><img src="mobi-alternate-logo.png" alt="Alternative Mobi Logo"/></a>
58+
<div class="nav-items">
59+
<a href="latest/index.html">User Manual</a>
60+
<a href="release-notes/index.html">Release Notes</a>
61+
<a href="https://inovexirad.atlassian.net/servicedesk/customer/portal/1" target="_blank">Help Desk</a>
62+
</div>
63+
</div>
64+
<div class="content">
65+
<div class="intro">
66+
<img class="logo" src="mobi-primary-logo-cropped.png" alt="Primary Mobi Logo"/>
67+
<p>Welcome to the Mobi Documentation Site! Here you can find the latest user manual and release notes along with information on previous releases.</p>
68+
</div>
69+
<br>
70+
<div class="quick-links">
71+
<div class="quick-link">
72+
<a href="latest/index.html">
73+
<i class="fa fa-book" aria-hidden="true"></i>
74+
User Manual
75+
</a>
76+
</div>
77+
<div class="quick-link">
78+
<a href="release-notes/index.html">
79+
<i class="fa fa-list-alt" aria-hidden="true"></i>
80+
Release Notes
81+
</a>
82+
</div>
83+
<div class="quick-link">
84+
<a href="https://inovexirad.atlassian.net/servicedesk/customer/portal/1" target="_blank">
85+
<i class="fa fa-question-circle" aria-hidden="true"></i>
86+
Help Desk
87+
</a>
88+
</div>
89+
</div>
90+
</div>
91+
</body>
92+
</html>
File renamed without changes.

custom.css latest/custom.css

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.adoc latest/index.adoc

+4-3

mobi-alternate-logo.png

52.3 KB
File renamed without changes.

nav-bar.css

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.nav-bar {
2+
position: fixed;
3+
z-index: 10000;
4+
left: 0;
5+
top: 0;
6+
right: 0;
7+
height: 50px;
8+
background-color: #303f9f;
9+
padding-left: 1rem;
10+
}
11+
.nav-bar .img-link {
12+
margin-right: 1rem;
13+
}
14+
.nav-bar img {
15+
height: 90%;
16+
box-shadow: none;
17+
position: relative;
18+
top: 50%;
19+
transform: translateY(-50%);
20+
}
21+
.nav-bar .nav-items {
22+
display: inline-block;
23+
vertical-align: middle;
24+
}
25+
.nav-bar .nav-items a {
26+
color: white;
27+
margin: 0 0.5rem;
28+
}
29+
body {
30+
padding-top: 50px;
31+
}
32+
body #header #toc {
33+
padding-top: 50px !important;
34+
}

nav-bar.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<div class="nav-bar">
2+
<a class="img-link" href="/"><img src="../mobi-alternate-logo.png" alt="Alternative Mobi Logo"/></a>
3+
<div class="nav-items">
4+
<a href="/latest/index.html">User Manual</a>
5+
<a href="/release-notes/index.html">Release Notes</a>
6+
<a href="https://inovexirad.atlassian.net/servicedesk/customer/portal/1" target="_blank">Help Desk</a>
7+
</div>
8+
</div>

0 commit comments

Comments
 (0)