Calorie counting web application written in the Go language

About.html 1.8KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {{set . "title" "About Grassfed"}}
  2. {{template "header.html" .}}
  3. <div class="row" style="padding: 50px 15px;">
  4. <h2>Why?</h2>
  5. <p>It is that time of year again to start monitoring what we consume not only to lose
  6. weight but also to make sure we're not consistently going overboard and doing more
  7. damage than good.</p>
  8. <h2>How do I use it?</h2>
  9. <p>It is actually quite simple. Simple click on "My Profile" in the upper right-hand
  10. corner and log in using Google+. Once authenticated a new account will be configured
  11. for you and now it is time to use it.</p>
  12. <p>The interface is minimalistic to reduce clutter as well as make it as user friendly
  13. as possible.</p>
  14. <ul>
  15. <li>To adjust your goal of daily calories just use the sliding bar.</li>
  16. <li>To add some type of food and its calories do so and click add.</li>
  17. <li>Made a mistake? Go ahead and click on the "fire" icon to burn your trash.</li>
  18. </ul>
  19. <h2>Where is this heading?</h2>
  20. <p>Actually this started as a demonstration of using the Go programming language. Typically
  21. it is nice to create an application you may use while learning something new so this
  22. application was born.</p>
  23. <p>Other than that there is no clear direction. We'll continue to update it as long as
  24. it feels like we are using it. Feel free to fork the codebase and do what you want (with
  25. respect to the license) or run it locally for you and your family and friends.</p>
  26. <h2>More information</h2>
  27. <p>Feel free to contact us from our website at
  28. <a href="http://www.revolvingcow.com" title="Revolving Cow">http://www.revolvingcow.com</a> or
  29. our <a href="https://plus.google.com/+Revolvingcow" title="Google+ profile">Google+ page</a>.</p>
  30. </div>
  31. {{template "footer.html" .}}