talk-calendar.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!--https://discourse.gohugo.io/t/how-to-use-hugo-template-variables-in-css/4464/13-->
  2. <style>
  3. {{ range .Site.RegularPages }}
  4. #{{ replace .Title " " "_" }}:target > .descrizione-talk{
  5. display:block !important;
  6. margin-bottom:0;
  7. }
  8. #{{ replace .Title " " "_" }}:target > .filler{
  9. margin-bottom: -1em !important;
  10. }
  11. #{{ replace .Title " " "_" }}:target > .filler >.title-wrapper{
  12. border-bottom:5pt solid #000001 !important;
  13. }
  14. {{ end }}
  15. </style>
  16. <section id="calendario">
  17. <ul>
  18. <div id="overflow-scroll">
  19. {{ range .Site.RegularPages }}
  20. <li id="{{ replace .Title " " "_" }}">
  21. <div class="filler">
  22. <div class="title-wrapper">
  23. <div class="orario"> --.-- </div>
  24. <!--<h4><a class="titolo" href="{{ .Permalink }}">{{ .Title }}</a></h4>-->
  25. <a class="titolo" href="#{{ replace .Title " " "_" }}">
  26. <h4>{{ .Title }}</h4>
  27. </a>
  28. </div>
  29. </div>
  30. <div class="descrizione-talk">
  31. <div>
  32. {{ .Content }}
  33. </div>
  34. </div>
  35. </li>
  36. {{ end }}
  37. </div>
  38. </ul>
  39. </section>