├── .gitignore ├── README.md ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── h2-1.4.190.jar ├── settings.gradle └── src └── main ├── java └── com │ └── teamtreehouse │ └── giflib │ ├── Application.java │ ├── config │ ├── AppConfig.java │ ├── DataConfig.java │ └── TemplateConfig.java │ ├── dao │ ├── CategoryDao.java │ ├── CategoryDaoImpl.java │ ├── GifDao.java │ └── GifDaoImpl.java │ ├── model │ ├── Category.java │ └── Gif.java │ ├── service │ ├── CategoryService.java │ ├── CategoryServiceImpl.java │ ├── GifService.java │ └── GifServiceImpl.java │ └── web │ ├── Color.java │ ├── FlashMessage.java │ └── controller │ ├── CategoryController.java │ └── GifController.java └── resources ├── app.properties ├── hibernate.cfg.xml ├── static ├── app.css ├── app.js ├── favicon.png ├── icons │ ├── favorite.png │ └── unfavorite.png ├── images │ └── me.jpg └── vendor │ ├── codrops │ ├── css │ │ ├── cs-select.css │ │ └── cs-skin-border.css │ ├── fonts │ │ ├── codropsicons │ │ │ ├── codropsicons.eot │ │ │ ├── codropsicons.svg │ │ │ ├── codropsicons.ttf │ │ │ ├── codropsicons.woff │ │ │ └── license.txt │ │ └── icomoon │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ └── js │ │ ├── classie.js │ │ └── selectFx.js │ ├── jquery │ └── jquery-1.11.3.js │ └── materialize │ ├── LICENSE │ ├── README.md │ ├── css │ ├── materialize.css │ └── materialize.min.css │ ├── font │ ├── material-design-icons │ │ ├── LICENSE.txt │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.svg │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ └── Material-Design-Icons.woff2 │ └── roboto │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 │ └── js │ ├── materialize.js │ └── materialize.min.js └── templates ├── category ├── details.html ├── form.html └── index.html ├── error.html ├── gif ├── details.html ├── favorites.html ├── form.html └── index.html └── layout.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/gradlew.bat -------------------------------------------------------------------------------- /h2-1.4.190.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/h2-1.4.190.jar -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'giflib-hibernate' 2 | 3 | -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/Application.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/config/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/config/AppConfig.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/config/DataConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/config/DataConfig.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/config/TemplateConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/config/TemplateConfig.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/dao/CategoryDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/dao/CategoryDao.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/dao/CategoryDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/dao/CategoryDaoImpl.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/dao/GifDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/dao/GifDao.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/dao/GifDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/dao/GifDaoImpl.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/model/Category.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/model/Category.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/model/Gif.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/model/Gif.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/service/CategoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/service/CategoryService.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/service/CategoryServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/service/CategoryServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/service/GifService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/service/GifService.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/service/GifServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/service/GifServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/web/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/web/Color.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/web/FlashMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/web/FlashMessage.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/web/controller/CategoryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/web/controller/CategoryController.java -------------------------------------------------------------------------------- /src/main/java/com/teamtreehouse/giflib/web/controller/GifController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/java/com/teamtreehouse/giflib/web/controller/GifController.java -------------------------------------------------------------------------------- /src/main/resources/app.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/app.properties -------------------------------------------------------------------------------- /src/main/resources/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/hibernate.cfg.xml -------------------------------------------------------------------------------- /src/main/resources/static/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/app.css -------------------------------------------------------------------------------- /src/main/resources/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/app.js -------------------------------------------------------------------------------- /src/main/resources/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/icons/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/icons/favorite.png -------------------------------------------------------------------------------- /src/main/resources/static/icons/unfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/icons/unfavorite.png -------------------------------------------------------------------------------- /src/main/resources/static/images/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/images/me.jpg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/css/cs-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/css/cs-select.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/css/cs-skin-border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/css/cs-skin-border.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/codropsicons/codropsicons.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/codropsicons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/codropsicons/license.txt -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/js/classie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/js/classie.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/codrops/js/selectFx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/codrops/js/selectFx.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/jquery/jquery-1.11.3.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/LICENSE -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/README.md -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/css/materialize.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/css/materialize.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/js/materialize.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/materialize/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/static/vendor/materialize/js/materialize.min.js -------------------------------------------------------------------------------- /src/main/resources/templates/category/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/category/details.html -------------------------------------------------------------------------------- /src/main/resources/templates/category/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/category/form.html -------------------------------------------------------------------------------- /src/main/resources/templates/category/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/category/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /src/main/resources/templates/gif/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/gif/details.html -------------------------------------------------------------------------------- /src/main/resources/templates/gif/favorites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/gif/favorites.html -------------------------------------------------------------------------------- /src/main/resources/templates/gif/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/gif/form.html -------------------------------------------------------------------------------- /src/main/resources/templates/gif/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/gif/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/giflib-hibernate/HEAD/src/main/resources/templates/layout.html --------------------------------------------------------------------------------