Skip to content

Commit

Permalink
Added Visit My Ancestors to news page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Belax8 committed Jul 22, 2017
1 parent 515a477 commit 518988d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
Binary file added images/news/vma-logo-favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,22 @@
<p ng-repeat="paragraphs in store.news[1].article">{{paragraphs}}</p>
</div>
</div>


<div class="row news-div">
<a href ng-href="{{store.news[2].newsLink}}">
<h3>{{store.news[2].title}}</h3>
</a>
<div class="col-md-3">
<a href ng-href="{{store.news[2].newsLink}}">
<img class="news-img" ng-src="{{store.news[2].image.src}}" />
</a>
</div>
<div class="col-md-9">
<h4>{{store.news[2].date}}</h4>
<p ng-repeat="paragraphs in store.news[2].article">{{paragraphs}}</p>
</div>
</div>

</div><!-- End .container -->
<?php include_once("templates/footer.html"); ?>

Expand Down
12 changes: 12 additions & 0 deletions scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,18 @@
]; // end audiobooks

var news = [
{
title: "We started working on VisitMyAncestors.com",
date: "June 4, 2017",
image: {
src: "/images/news/vma-logo-favicon.png",
alt: ""
},
newsLink: "https://www.visitmyancestors.com",
article: [
"We have started working on our new website, Visit My Ancestors. We think it's important to learn about your ancestors, so we are building a website that allows you to see where your ancestors are buried. You will login via FamilySearch and we will use that data to populate a map of where they are buried. Come and check it out today."
]
},
{
title: "Check out our Product Reviews",
date: "February 8, 2017",
Expand Down
2 changes: 1 addition & 1 deletion scripts/app.min.js

Large diffs are not rendered by default.

0 comments on commit 518988d

Please sign in to comment.