-
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
Alex Bezuska
committed
Feb 20, 2023
1 parent
ce1c118
commit 219617a
Showing
12 changed files
with
701 additions
and
191 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,40 @@ | ||
{{>header}} | ||
<main class="container my-5"> | ||
|
||
<h1>Blog</h1> | ||
|
||
{{#each blog}} | ||
<div class="post" id="{{postID}}"> | ||
<article> | ||
<h2>{{title}}</h2> | ||
<div class="author-date"> | ||
<p>By {{author}}</p> | ||
<p>{{date}}</p> | ||
</div> | ||
<div class="row"> | ||
|
||
<div class="col-md-6"> | ||
<p>{{blurb}}</p> | ||
{{#each contentParagraphs}}<p>{{this}}</p>{{/each}} | ||
{{#if ctaLink}} | ||
<a href="{{ctaLink}}" target="_blank" class="btn btn-primary">{{cta}}</a> | ||
{{/if}} | ||
</div> | ||
<div class="col-md-6"> | ||
<img class="img-fluid" src="{{image}}" alt="{{title}}"> | ||
<strong>{{imageCaptionStrong}}</strong> | ||
<p>{{imageCaptionSub}}</p> | ||
</div> | ||
</div> | ||
</article> | ||
<hr> | ||
|
||
</div> | ||
|
||
|
||
{{/each}} | ||
|
||
|
||
</main> | ||
|
||
{{>footer}} |
Oops, something went wrong.