Advertisement
Guest User

HTML

a guest
Apr 19th, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4. <title>Click node: {{ .Name }}</title>
  5. <link rel="stylesheet" href="static/styles.css">
  6. <script src="static/script.js"></script>
  7. </head>
  8.  
  9. <body class="bodyHeading">
  10. <h1>Click node: {{ .Name }}</h1>
  11.  
  12. <h2>Current click counts:<h2>
  13. <ul class="no-bullets">
  14. {{ range $position:= .Position }}
  15. <li class= "table" class="position-label" id="position-label-{{ $position }}">{{ $position }}: 0</li>
  16. {{ end }}
  17. </ul>
  18.  
  19. <h2>Help us get more mouse clicks:<h2>
  20. {{ range $position := .Position }}
  21. <div class="position-button position-button-{{ $position}}"
  22. onclick="colorClicked('{{ $position }}')">{{ $position}}</div>
  23. {{ end }}
  24. </body>
  25.  
  26. </html>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement