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
#include <functional> | |
#include <initializer_list> | |
#include <optional> | |
#include <string> | |
#include <vector> | |
// A single node of our parse tree. | |
class Node { | |
public: | |
// Construct a node using a list of triggers. |
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
.cb-slideshow li:nth-child(1) span { | |
background-image: url(../assets/bg_img_1.jpg); | |
} | |
.cb-slideshow li:nth-child(2) span { | |
background-image: url(../assets/bg_img_2.jpg); | |
animation-delay: 6s; | |
} | |
.cb-slideshow li:nth-child(3) span { | |
background-image: url(../assets/bg_img_3.jpg); | |
animation-delay: 12s; |
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
<!-- Goldring Add Here --> | |
<div class="col-sm-3"> | |
<a href="blog.html?target=_______"> | |
<img src="Link to the cover photo you want to use" class="featured" alt="featured"> | |
<p class="featured-subtitle">The subtitle of the featured album</p> | |
</a> | |
</div> | |
<!-- Goldring Stop Adding Here --> |
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
<!-- Start of New Goldring Content --> | |
<div class="col-sm-4 blog" id="A unique identifier for the album" path="The path to the album folder" count="The number of photos" dimensions="The dimensions string copied from the Mac Application"> | |
<img src="The reference to the image you want to use as a cover image for the album" alt="Portfolio Image"> | |
<div> | |
<h2>Name of Couple</h2> | |
<h3>Marriage OR Engagement</h3> | |
</div> | |
</div> |
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
const _____ = document.getElementById("_____"); | |
_____.addEventListener('click', function () { | |
var gallery = new PhotoSwipe(pswp, PhotoSwipeUI_Default, loadDataForElement(_____), options); | |
gallery.init(); | |
}); |
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
<div class="col-md-4" id="_______" path="_______/______/____" count="_" dimensions="__x__,__x__,__x__"> | |
<img src="______"> | |
<h5>______</h5> | |
</div> |
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
<div class="gallery"> | |
<img src="..." alt="Student" width="300" height="200"> | |
<div class="desc">Student Name</div> | |
</div> |
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
<table> | |
<thead> | |
<tr> | |
<th>Col 1</th> | |
<th>Col 2</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Col 1 Content</td> |
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
<section> | |
<img src="..." alt="Project-IMG" class="project-img" style="height: 300px;"> | |
<div class="project-img-right clear-float project-div"> | |
<h6>Title</h6> | |
<br> | |
<p>Description</p> | |
</div> | |
</section> | |
<hr> |
NewerOlder