trumptracker.github.io/index.html
2016-11-13 17:39:35 -05:00

80 lines
4.1 KiB
HTML

---
# You don't need to edit this file, it's empty on purpose.
# Edit theme's home layout instead if you wanna make some changes
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: page
---
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="list-group">
<li class="list-group-item list-group-item"> <i class="fa fa-calendar fa-fw"></i> <b>Days in Office: 0</b></li>
<li class="list-group-item list-group-item-info"> <i class="fa fa-hourglass-start fa-fw"></i> Not Yet Started: 201 of 201</li>
<li class="list-group-item list-group-item-warning"> <i class="fa fa-cogs fa-fw"></i> In Progress: 0 of 201</li>
<li class="list-group-item list-group-item-success"> <i class="fa fa-check-circle-o fa-fw"></i> Achieved: 0 of 201</li>
<li class="list-group-item list-group-item-danger"> <i class="fa fa-ban fa-fw"></i> Broken: 0 of 201</li>
</ul>
<p>
On Tuesday November 9th, 2016, Donald John Trump won the electoral vote and is currently standing to be the President-elect of the United States of America.
<br /><br />
He made <b>a lot of promises</b>. Trump Tracker will fact-check and see if he adheres to all of his stands on policies regarding culture, immigration, economy, and many more.
</p>
<div class="">
<!-- I got these buttons from simplesharebuttons.com -->
<div id="share-buttons">
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://trumptracker.github.io/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://trumptracker.github.io/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://trumptracker.github.io/&amp;text=Track Donald J Trump's Electoral Promises with Trump Tracker.&amp;hashtags=TrumpTracker&amp;via=VirenMohindra" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/7eruPYTOZb0"></iframe>
</div>
</div>
</div>
</div>
<br />
<div class="container-fluid">
<div class="row">
<ul class="nav nav-tabs" id="myTabs" role="tablist">
{% for tab in site.data.data.tabs %}
<li role="presentation" class="{{tab.id}} {% if forloop.index == 1 %}active{% endif %}">
<a href="#{{tab.id}}" aria-controls="{{tab.id}}" role="tab" data-toggle="tab">
<i class="fa fa-{{tab.icon}}"></i> {{tab.name}}
</a>
</li>
{% endfor %}
</ul>
</div>
<div>
<!-- Tab panes -->
<div class="tab-content">
{% for tab in site.data.data.tabs %}
<div role="tabpanel" class="tab-pane {% if forloop.index == 1 %}active{% endif %} fade in" id="{{tab.id}}">
<div class="row">
{% for section in tab.sections %}
<ol class="points-list">
<h4><a href="{{section.link}}">{{section.header}}</a></h4>
{% for point in section.points %}
<li>{{point}}</li>
{% endfor %}
</ol>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>