Files
website-hugo/themes/lhs/layouts/page/calendar.html
2023-11-07 22:49:36 +00:00

24 lines
530 B
HTML

{{ define "title" }}
{{ .Title }}
{{ end }}
{{ define "subtitle" }}
{{ .Params.subtitle }}
{{ end }}
{{ define "extra_css" }}
<link rel="stylesheet" href="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.css" />
{{ end }}
{{ define "extra_js" }}
<script src="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.js"></script>
<script>
$(document).ready(function () {
render_calendar();
});
</script>
{{ end }}
{{ define "content" }}
<div id="calendar" style="height: 600px"></div>
{{ end }}