Calorie counting web application written in the Go language

Index.html 477B

12345678910111213141516171819202122
  1. {{set . "title" "Home"}}
  2. {{template "header.html" .}}
  3. {{append . "moreScripts" "/public/js/overview.js"}}
  4. <div class="jumbotron">
  5. <h1></h1>
  6. <div class="row">
  7. <div class="col-md-6 text-center">
  8. <h3 class="accounts">0</h3>
  9. <h3>Accounts</h3>
  10. </div>
  11. <div class="col-md-6 text-center">
  12. <h3 class="calories">0</h3>
  13. <h3>Calories</h3>
  14. </div>
  15. </div>
  16. </div>
  17. {{template "footer.html" .}}