-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardize layouts to <div class="content"><div class="container"><d…
…iv class="prose"> structure
- Loading branch information
1 parent
6550724
commit 119ce54
Showing
3 changed files
with
29 additions
and
27 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
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 |
---|---|---|
@@ -1,17 +1,19 @@ | ||
--- | ||
layout: default | ||
--- | ||
<article class="content"> | ||
{% include cover.html %} | ||
<div class="container"> | ||
<div class='post-header'> | ||
{% include breadcrumbs.html %} | ||
{% include pagenav.html %} | ||
<article> | ||
<div class="content"> | ||
{% include cover.html %} | ||
<div class="container"> | ||
<div class='post-header'> | ||
{% include breadcrumbs.html %} | ||
{% include pagenav.html %} | ||
</div> | ||
<div class='post-body prose centered'> | ||
<div class="neatline"></div> | ||
{{content}} | ||
</div> | ||
{%- include tagged_pages_list.html -%} | ||
</div> | ||
<div class='post-body prose centered'> | ||
<div class="neatline"></div> | ||
{{content}} | ||
</div> | ||
{%- include tagged_pages_list.html -%} | ||
</div> | ||
</article> |
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