├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src └── main ├── java └── net │ └── crunchdroid │ ├── BootstrapApp.java │ ├── PageController.java │ └── ThymeleafWebMvcConfig.java └── resources ├── application.properties ├── static ├── css │ ├── custom.css │ └── custom.min.css ├── images │ ├── american-express.png │ ├── cropper.jpg │ ├── img.jpg │ ├── inbox.png │ ├── mastercard.png │ ├── media.jpg │ ├── paypal.png │ ├── picture.jpg │ ├── prod-1.jpg │ ├── prod-2.jpg │ ├── prod-3.jpg │ ├── prod-4.jpg │ ├── prod-5.jpg │ ├── user.png │ └── visa.png └── js │ ├── custom.js │ └── custom.min.js └── templates ├── fragments ├── fragment-footer-content.html ├── fragment-menu-footer-buttons.html ├── fragment-menu-profile-quick-info.html ├── fragment-sidebar-menu.html ├── fragment-top-navigation.html └── layout.html ├── plain-page.html └── pricing-tables.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/net/crunchdroid/BootstrapApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/java/net/crunchdroid/BootstrapApp.java -------------------------------------------------------------------------------- /src/main/java/net/crunchdroid/PageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/java/net/crunchdroid/PageController.java -------------------------------------------------------------------------------- /src/main/java/net/crunchdroid/ThymeleafWebMvcConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/java/net/crunchdroid/ThymeleafWebMvcConfig.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/css/custom.css -------------------------------------------------------------------------------- /src/main/resources/static/css/custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/css/custom.min.css -------------------------------------------------------------------------------- /src/main/resources/static/images/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/american-express.png -------------------------------------------------------------------------------- /src/main/resources/static/images/cropper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/cropper.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/img.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/inbox.png -------------------------------------------------------------------------------- /src/main/resources/static/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/mastercard.png -------------------------------------------------------------------------------- /src/main/resources/static/images/media.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/media.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/paypal.png -------------------------------------------------------------------------------- /src/main/resources/static/images/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/picture.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/prod-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/prod-1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/prod-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/prod-2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/prod-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/prod-3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/prod-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/prod-4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/prod-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/prod-5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/user.png -------------------------------------------------------------------------------- /src/main/resources/static/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/images/visa.png -------------------------------------------------------------------------------- /src/main/resources/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/js/custom.js -------------------------------------------------------------------------------- /src/main/resources/static/js/custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/static/js/custom.min.js -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/fragment-footer-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/fragments/fragment-footer-content.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/fragment-menu-footer-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/fragments/fragment-menu-footer-buttons.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/fragment-menu-profile-quick-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/fragments/fragment-menu-profile-quick-info.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/fragment-sidebar-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/fragments/fragment-sidebar-menu.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/fragment-top-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/fragments/fragment-top-navigation.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/fragments/layout.html -------------------------------------------------------------------------------- /src/main/resources/templates/plain-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/plain-page.html -------------------------------------------------------------------------------- /src/main/resources/templates/pricing-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRUNCHDROID/spring-thymeleaf-template-integration/HEAD/src/main/resources/templates/pricing-tables.html --------------------------------------------------------------------------------