Spaces:
Sleeping
Sleeping
File size: 597 Bytes
03fc4f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
{% extends "base.html" %}
{% load static %}
{% block content %}
<br>
<div class="jumbotron text-center">
<div class="container">
<img class="img-responsive" src="{% static 'gg_logo_1.png'%}">
<h1>Welcome to Grub Guesser</h1>
<p>Grub Guesser is a model developed in Python using Keras and Tensorflow. <br> Try out a random sample image or paste a url to an image of your own!</p>
<a type="button" class="btn btn-lg btn-default" href="https://github.com/JonSolow/foodid"><span class="glyphicon glyphicon-download"></span> Model Source on GitHub</a>
</div>
</div>
{% endblock %}
|