-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4fcf4a1
Showing
3 changed files
with
463 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM nginx:alpine | ||
|
||
COPY src /usr/share/nginx/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" > | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>MAF CICD Tech Talk</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> | ||
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300'> | ||
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700'> | ||
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700'><link rel="stylesheet" href="./style.css"> | ||
|
||
</head> | ||
<body> | ||
<!-- partial:index.partial.html --> | ||
<div class="line"></div> | ||
<div class="wrapper"> | ||
<header role="banner"> | ||
<nav role="navigation"> | ||
<h1><a href="#">MAF Rocks!</a></h1> | ||
<ul class="nav-ul"> | ||
<li><a href="#">Home</a></li> | ||
<li><a href="#">About Us</a></li> | ||
<li><a href="#">Projects</a></li> | ||
<li><a href="#">Contacts</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main role="main"> | ||
<section class="sec-intro" role="section"> | ||
<img src="https://www.techweekeurope.co.uk/wp-content/uploads/2012/07/wifimountaindownload.jpg" alt="" /> | ||
</section> | ||
<section class="sec-boxes" role="section"> | ||
<adrticle class="box"> | ||
<h1>DevOps</h1> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> | ||
<button class="button" type="button" role="button" value="MORE">More</button> | ||
</adrticle> | ||
<adrticle class="box"> | ||
<h1>Cloud</h1> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> | ||
<button class="button" type="button" role="button" value="MORE">More</button> | ||
</adrticle> | ||
<adrticle class="box"> | ||
<h1>Containers</h1> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> | ||
<button class="button" type="button" role="button" value="MORE">More</button> | ||
</adrticle> | ||
<adrticle class="box"> | ||
<h1>CICD</h1> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> | ||
<button class="button" type="button" role="button" value="MORE">More</button> | ||
</adrticle> | ||
</section> | ||
|
||
|
||
</main> | ||
</div> | ||
<footer> | ||
<nav role="navigation"> | ||
<ul class="nav-ul"> | ||
<li><a href="#">Home</a></li> | ||
<li><a href="#">About Us</a></li> | ||
<li><a href="#">Projects</a></li> | ||
<li><a href="#">Contacts</a></li> | ||
</ul> | ||
</nav> | ||
<p class="copy">© lorem-ipsum</p> | ||
</footer> | ||
<div class="line"></div> | ||
</body> | ||
</html> |
Oops, something went wrong.