gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}

<section class="section">
	<div class="container is-centered page">
		<div class="columns">
			<div class="column is-one-quarter">
                {{ partial "menu" . }}
			</div>
			<div class="column">
				<div class=" content">
					<section class="resume-section p-3 p-lg-5 d-flex flex-column">
						<div class="my-auto" >
							<div id="search-results"></div>
						</div>
					</section>
					<!-- this template is sucked in by search.js and appended to the search-results div above. So editing here will adjust style -->
					<script id="search-result-template" type="text/x-js-template">
						<div id="summary-${key}">
							<h4><a href="${link}">${title}</a></h4>
							<p>${snippet}</p>
							${ isset tags }<p>Tags: ${tags}</p>${ end }
							${ isset categories }<p>Categories: ${categories}</p>${ end }
							<hr/>
						</div>
					</script>
				</div>
			</div>
		</div>
	</div>
</section>

<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.4.5/fuse.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/mark.min.js"></script>
<script>document.LANG = "{{ .Language.Lang }}";</script>
{{ $script := resources.Get "js/search.js" | minify | fingerprint -}}
<script src="{{ $script.Permalink }}" {{ printf "integrity=%q" $script.Data.Integrity | safeHTMLAttr }}></script>
{{ partial "footer.html" . }}