• This project
    • Loading...
  • Sign in

insurance / backend · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • backend
  • ..
  • templates
  • demo3.ftl
  • initialize
    07037d44
    by 高路晨
    2025-01-20 15:24:41 +0800  
    Browse Files
demo3.ftl 272 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!DOCTYPE html>
<html>
<head lang="en">
<title>Spring Boot FreeMarker</title>
</head>
<body>
	Freemarker HTML <br><br>
	
	Sessionid: ${sessionid!}<br><br>
	
    <font>
        <#list userList as item>
            ${item!}<br />
        </#list>
    </font>
</body>
</html>