Created
August 7, 2015 23:58
-
-
Save mbuttler/95a569e816f5505b979a to your computer and use it in GitHub Desktop.
gameboard 1 - directive template
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-sm-4"> | |
<div class="row scorecard"> | |
<p class="period"> {{ info.period }} </p> | |
<div class="visitor col-xs-4"> | |
<h2 class="visitor-score"> {{ info.visitor_score }} </h2> | |
<h3> | |
<span class="visitor-city"> {{ info.visitor_team.city }} </span><br/> | |
<span class="visitor-name"> {{ info.visitor_team.name }} </span> | |
</h3> | |
</div> | |
<div class="dash col-xs-3"> | |
<h2>-</h2> | |
</div> | |
<div class="home col-xs-4"> | |
<h2 class="home-score"> {{ info.home_score }}</h2> | |
<h3> | |
<span class="home-city"> {{ info.home_team.city }} </span><br/> | |
<span class="home-name"> {{ info.home_team.name }} </span> | |
</h3> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment