Skip to content

Commit 92a7c48

Browse files
committed
Updated project website
1 parent 8f962c4 commit 92a7c48

Some content is hidden

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

63 files changed

+51468
-834
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: node_js
2+
git:
3+
depth: 3
4+
node_js:
5+
- "node"
6+
install: npm install
7+
script:
8+
- npm test
9+
- gulp
10+
cache:
11+
directories:
12+
- node_modules
13+
notifications:
14+
email: false

404.html

Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8+
<meta name="description" content="">
9+
<meta name="author" content="">
10+
11+
<title>Modern Business - Start Bootstrap Template</title>
12+
13+
<!-- Bootstrap core CSS -->
14+
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
15+
16+
<!-- Custom styles for this template -->
17+
<link href="css/modern-business.css" rel="stylesheet">
18+
19+
</head>
20+
21+
<body>
22+
23+
<!-- Navigation -->
24+
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark fixed-top">
25+
<div class="container">
26+
<a class="navbar-brand" href="index.html">Start Bootstrap</a>
27+
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
28+
<span class="navbar-toggler-icon"></span>
29+
</button>
30+
<div class="collapse navbar-collapse" id="navbarResponsive">
31+
<ul class="navbar-nav ml-auto">
32+
<li class="nav-item">
33+
<a class="nav-link" href="about.html">About</a>
34+
</li>
35+
<li class="nav-item">
36+
<a class="nav-link" href="services.html">Services</a>
37+
</li>
38+
<li class="nav-item">
39+
<a class="nav-link" href="contact.html">Contact</a>
40+
</li>
41+
<li class="nav-item dropdown">
42+
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownPortfolio" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
43+
Portfolio
44+
</a>
45+
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownPortfolio">
46+
<a class="dropdown-item" href="portfolio-1-col.html">1 Column Portfolio</a>
47+
<a class="dropdown-item" href="portfolio-2-col.html">2 Column Portfolio</a>
48+
<a class="dropdown-item" href="portfolio-3-col.html">3 Column Portfolio</a>
49+
<a class="dropdown-item" href="portfolio-4-col.html">4 Column Portfolio</a>
50+
<a class="dropdown-item" href="portfolio-item.html">Single Portfolio Item</a>
51+
</div>
52+
</li>
53+
<li class="nav-item dropdown">
54+
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownBlog" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
55+
Blog
56+
</a>
57+
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownBlog">
58+
<a class="dropdown-item" href="blog-home-1.html">Blog Home 1</a>
59+
<a class="dropdown-item" href="blog-home-2.html">Blog Home 2</a>
60+
<a class="dropdown-item" href="blog-post.html">Blog Post</a>
61+
</div>
62+
</li>
63+
<li class="nav-item active dropdown">
64+
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownBlog" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
65+
Other Pages
66+
</a>
67+
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownBlog">
68+
<a class="dropdown-item" href="full-width.html">Full Width Page</a>
69+
<a class="dropdown-item" href="sidebar.html">Sidebar Page</a>
70+
<a class="dropdown-item" href="faq.html">FAQ</a>
71+
<a class="dropdown-item active" href="404.html">404</a>
72+
<a class="dropdown-item" href="pricing.html">Pricing Table</a>
73+
</div>
74+
</li>
75+
</ul>
76+
</div>
77+
</div>
78+
</nav>
79+
80+
<!-- Page Content -->
81+
<div class="container">
82+
83+
<!-- Page Heading/Breadcrumbs -->
84+
<h1 class="mt-4 mb-3">404
85+
<small>Page Not Found</small>
86+
</h1>
87+
88+
<ol class="breadcrumb">
89+
<li class="breadcrumb-item">
90+
<a href="index.html">Home</a>
91+
</li>
92+
<li class="breadcrumb-item active">404</li>
93+
</ol>
94+
95+
<div class="jumbotron">
96+
<h1 class="display-1">404</h1>
97+
<p>The page you're looking for could not be found. Here are some helpful links to get you back on track:</p>
98+
<ul>
99+
<li>
100+
<a href="index.html">Home</a>
101+
</li>
102+
<li>
103+
<a href="about.html">About</a>
104+
</li>
105+
<li>
106+
<a href="services.html">Services</a>
107+
</li>
108+
<li>
109+
<a href="contact.html">Contact</a>
110+
</li>
111+
<li>
112+
Portfolio
113+
<ul>
114+
<li>
115+
<a href="portfolio-1-col.html">1 Column Portfolio</a>
116+
</li>
117+
<li>
118+
<a href="portfolio-2-col.html">2 Column Portfolio</a>
119+
</li>
120+
<li>
121+
<a href="portfolio-3-col.html">3 Column Portfolio</a>
122+
</li>
123+
<li>
124+
<a href="portfolio-4-col.html">4 Column Portfolio</a>
125+
</li>
126+
</ul>
127+
</li>
128+
<li>
129+
Blog
130+
<ul>
131+
<li>
132+
<a href="blog-home-1.html">Blog Home 1</a>
133+
</li>
134+
<li>
135+
<a href="blog-home-2.html">Blog Home 2</a>
136+
</li>
137+
<li>
138+
<a href="blog-post.html">Blog Post</a>
139+
</li>
140+
</ul>
141+
</li>
142+
<li>
143+
Other Pages
144+
<ul>
145+
<li>
146+
<a href="full-width-page.html">Full Width Page</a>
147+
</li>
148+
<li>
149+
<a href="sidebar.html">Sidebar Page</a>
150+
</li>
151+
<li>
152+
<a href="faq.html">FAQ</a>
153+
</li>
154+
<li>
155+
<a href="404.html">404 Page</a>
156+
</li>
157+
<li>
158+
<a href="pricing-table.html">Pricing Table</a>
159+
</li>
160+
</ul>
161+
</li>
162+
</ul>
163+
</div>
164+
<!-- /.jumbotron -->
165+
166+
</div>
167+
<!-- /.container -->
168+
169+
<!-- Footer -->
170+
<footer class="py-5 bg-dark">
171+
<div class="container">
172+
<p class="m-0 text-center text-white">Copyright &copy; Your Website 2019</p>
173+
</div>
174+
<!-- /.container -->
175+
</footer>
176+
177+
<!-- Bootstrap core JavaScript -->
178+
<script src="vendor/jquery/jquery.min.js"></script>
179+
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
180+
181+
</body>
182+
183+
</html>

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013-2019 Blackrock Digital LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# soecjan.github.io
2-
My Website
2+
Overview of all projects

about.html

Lines changed: 0 additions & 159 deletions
This file was deleted.

assets/img/PolyTycoon1920x1080.png

2.14 MB
Loading

assets/img/PolyTycoon700x300.png

244 KB
Loading

assets/img/Smorle1920x1080.png

295 KB
Loading

assets/img/Smorle700x300.png

107 KB
Loading

0 commit comments

Comments
 (0)