Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dropinblog-beanthere-site/blog/index.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
139 lines (131 sloc)
4.4 KB
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
<!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>BeanThere – Freshly Roasted Coffee Beans</title> | |
<!-- Bootstrap core CSS --> | |
<link | |
rel="stylesheet" | |
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" | |
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" | |
crossorigin="anonymous" | |
/> | |
<!-- Custom styles for this template --> | |
<link href="/assets/styles.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<nav class="navbar navbar-expand-md navbar-dark fixed-top"> | |
<a class="navbar-brand" href="/">BeanThere</a> | |
<button | |
class="navbar-toggler" | |
type="button" | |
data-toggle="collapse" | |
data-target="#navbarsExampleDefault" | |
aria-controls="navbarsExampleDefault" | |
aria-expanded="false" | |
aria-label="Toggle navigation" | |
> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="collapse navbar-collapse" id="navbarsExampleDefault"> | |
<ul class="navbar-nav mr-auto"> | |
<li class="nav-item"> | |
<a class="nav-link" href="/">Home</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#">About</a> | |
</li> | |
<li class="nav-item dropdown"> | |
<a | |
class="nav-link dropdown-toggle" | |
href="/" | |
id="dropdown01" | |
data-toggle="dropdown" | |
aria-haspopup="true" | |
aria-expanded="false" | |
>Beans</a | |
> | |
<div class="dropdown-menu" aria-labelledby="dropdown01"> | |
<a class="dropdown-item" href="#">Light Roast</a> | |
<a class="dropdown-item" href="#">Medium Roast</a> | |
<a class="dropdown-item" href="#">Dark Roast</a> | |
</div> | |
</li> | |
<li class="nav-item active"> | |
<a class="nav-link" href="/blog/" | |
>Blog <span class="sr-only">(current)</span></a | |
> | |
</li> | |
</ul> | |
<form class="form-inline my-2 my-lg-0"> | |
<input | |
class="form-control mr-sm-2" | |
type="text" | |
placeholder="Search" | |
aria-label="Search" | |
/> | |
<button class="btn btn-outline-light my-2 my-sm-0" type="submit"> | |
Search | |
</button> | |
</form> | |
</div> | |
</nav> | |
<main role="main"> | |
<div class="container"> | |
<h1>Blog</h1> | |
<div class="list-post"> | |
{% for post in collections.posts %} | |
<article class="card-post card"> | |
<img | |
class="card-img-top" | |
src="{{ post.featuredImage }}" | |
alt="{{ post.title }} feature image" | |
/> | |
<div class="card-body"> | |
<h2> | |
<a href="/blog/{{ post.slug }}/">{{ post.title }}</a> | |
</h2> | |
<p>{{ post.summary }}</p> | |
<aside> | |
<time datetime="{{ post.publishedAt }}"> | |
Published on {{ post.publishedAt }} | |
</time> | |
<span> by {{ post.author.name }}</span> | |
</aside> | |
</div> | |
</article> | |
{% endfor %} | |
</div> | |
<hr /> | |
</div> | |
<!-- /container --> | |
</main> | |
<footer class="container"> | |
<p>© BeanThere 2017-2020</p> | |
</footer> | |
<!-- Bootstrap core JavaScript | |
================================================== --> | |
<!-- Placed at the end of the document so the pages load faster --> | |
<script | |
src="https://code.jquery.com/jquery-3.3.1.slim.min.js" | |
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" | |
crossorigin="anonymous" | |
></script> | |
<script | |
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" | |
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" | |
crossorigin="anonymous" | |
></script> | |
<script | |
src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" | |
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" | |
crossorigin="anonymous" | |
></script> | |
</body> | |
</html> |