Created
August 18, 2017 07:05
-
-
Save sebgates/277039d0f5bbdbc8a67be7e8bd074e41 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!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>Bootstrap4 Template for blogging</title> | |
<!-- Bootstrap core CSS --> | |
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- Custom styles for this template --> | |
<link href="css/blog.css" rel="stylesheet"> | |
<!-- Temporary navbar container fix --> | |
<style> | |
.navbar-toggler { | |
z-index: 1; | |
} | |
@media (max-width: 576px) { | |
nav > .container { | |
width: 100%; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Navigation --> | |
<nav class="navbar fixed-top navbar-toggleable-md navbar-inverse bg-inverse"> | |
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarExample" aria-controls="navbarExample" aria-expanded="false" aria-label="Toggle navigation"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="container"> | |
<a class="navbar-brand" href="index.">Blog template</a> | |
<div class="collapse navbar-collapse" id="navbarExample"> | |
<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="blog1-layout.html">Layout 1</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="blog2-layout.php.html">layout 2</a> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment