Created
May 23, 2017 02:40
-
-
Save levlaz/1ee8241296d18e580f2dbb2d848cde16 to your computer and use it in GitHub Desktop.
Thymeleaf Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html xmlns:th="http://www.thymeleaf.org"> | |
| <head> | |
| <title>CircleCI Spring Demo</title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <link rel="stylesheet" th:href="@{/webjars/bootstrap/3.3.7/css/bootstrap.min.css}" /> | |
| <link rel="stylesheet" th:href="@{/css/style.css}" href="../static/css/style.css" /> | |
| </head> | |
| <body> | |
| <nav class="navbar"> | |
| <div class="container"> | |
| <div class="navbar-header"> | |
| <a class="navbar-brand" href="#">CircleCI Demo Spring</a> | |
| </div> | |
| <div id="navbar" class="collapse navbar-collapse"> | |
| <ul class="nav navbar-nav"> | |
| <li class="active"><a href="#">Home</a></li> | |
| <li><a href="#">About</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| </nav> | |
| <div class="container"> | |
| <h1> CircleCI Spring Demo </h1> | |
| </div> | |
| <script th:src="@{/webjars/bootstrap/3.3.7/js/bootstrap.min.js}"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment