This repository has been archived by the owner on Feb 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Puts videos section under posts sections
- Loading branch information
Showing
1 changed file
with
21 additions
and
20 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 |
---|---|---|
@@ -1,25 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
{% include head.html %} | ||
</head> | ||
<body class="home-template"> | ||
<header class="notepad-site-head"> | ||
{% include header.html %} | ||
</header> | ||
<head> | ||
{% include head.html %} | ||
</head> | ||
<body class="home-template"> | ||
<header class="notepad-site-head"> | ||
{% include header.html %} | ||
</header> | ||
|
||
<main class="notepad-content" role="main"> | ||
|
||
<main class="notepad-content" role="main"> | ||
{{ content }} | ||
|
||
<div class="wrap-videos"> | ||
<embed width="400" height="315" src="//www.youtube.com/embed/4oHw6LcViMI"> | ||
<embed width="400" height="315" src="//www.youtube.com/embed/5M9iFmMqcmc"> | ||
<embed width="400" height="315" src="//www.youtube.com/embed/QeFqUjSD7Jw"> | ||
</div> | ||
{{ content }} | ||
{% include footer.html %} | ||
</main> | ||
{% include scripts.html %} | ||
</body> | ||
</html> | ||
<div class="row wrap-videos"> | ||
<div class = "video"><embed src="//www.youtube.com/embed/4oHw6LcViMI"></div> | ||
<div class = "video"><embed src="//www.youtube.com/embed/5M9iFmMqcmc"></div> | ||
<div class = "video"><embed src="//www.youtube.com/embed/QeFqUjSD7Jw"></div> | ||
</div> | ||
|
||
{% include footer.html %} | ||
</main> | ||
|
||
{% include scripts.html %} | ||
</body> | ||
</html> |