You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

head_notice.tmpl 1.5 kB

3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
1234567891011121314151617181920212223242526272829303132
  1. {{if not .IsCourse}}
  2. {{ if (and .notices (not .PageIsHome)) }}
  3. <div class="notic_content" id ="notic_content" style="display: block; position: relative">
  4. <div class="ui container">
  5. <marquee behavior="scroll" direction="left">
  6. {{ $firstTag := true }}
  7. {{range .notices.Notices}}
  8. {{if eq .Visible 1}}
  9. {{if $firstTag}}
  10. <a href={{.Link}} class="a_width" style = 'margin-left: 0px !important;' target="_blank">
  11. <i class="ri-arrow-right-s-line"></i>
  12. {{.Title}}
  13. </a>
  14. {{else}}
  15. <a href={{.Link}} class="a_width" target="_blank">
  16. <i class="ri-arrow-right-s-line"></i>
  17. {{.Title}}
  18. </a>
  19. {{end}}
  20. {{ $firstTag = false }}
  21. {{end}}
  22. {{end}}
  23. </marquee>
  24. <div class="item right" style="position:absolute;right: 1px;top:0px;">
  25. <i class="ri-close-fill x_icon" onclick="closeNoice()"></i>
  26. </div>
  27. </div>
  28. </div>
  29. {{end}}
  30. {{end}}