Files
webgit/src/main/resources/templates/frameset.html
T

15 lines
494 B
HTML

<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>WebGit</title>
</head>
<frameset cols="180,*">
<frame th:src="${selectedRepo != null} ? '/nav?repo=' + ${selectedRepo} : '/nav'" name="nav">
<frame th:src="${showCloneForm} ? '/clone-form' : (${selectedRepo != null} ? '/repo/' + ${selectedRepo} + '/changes' : '/welcome')" name="content">
<noframes>
<body>
<p>Your browser does not support frames. <a href="/repos">Click here</a> to continue.</p>
</body>
</noframes>
</frameset>
</html>