Skip to content

Instantly share code, notes, and snippets.

@levlaz
Created May 23, 2017 02:40
Show Gist options
  • Select an option

  • Save levlaz/1ee8241296d18e580f2dbb2d848cde16 to your computer and use it in GitHub Desktop.

Select an option

Save levlaz/1ee8241296d18e580f2dbb2d848cde16 to your computer and use it in GitHub Desktop.
Thymeleaf Example
<!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