diff --git a/layouts/shortcodes/cite_conference.html b/layouts/shortcodes/cite_conference.html new file mode 100644 index 0000000..1b0de55 --- /dev/null +++ b/layouts/shortcodes/cite_conference.html @@ -0,0 +1,46 @@ +{{/* + +A template for citing conferences inspired by the "cite conference" template of +Wikipedia. + + +### Example + +``` +{{< cite_conference + author = "Patt, Yale N." + title = "LC-3, x86, or MIPS: The First ISA for Students to Study" + + url = "https://web.archive.org/web/20250129103001/https://www.csc2.ncsu.edu/faculty/efg/wcae/ISCA2007/FinalProgram.html" + conference = "Workshop on Computer Architecture Education" + date = "2007-06-09" + location = "San Diego, CA" + + original-url = "https://www.csc2.ncsu.edu/faculty/efg/wcae/ISCA2007/FinalProgram.html" + archive-date = "2025-01-29" +>}} +``` + +*/}} + +
+ +{{/* Authors */}} +{{ with .Get "author" }}{{ . }}{{ end }}{{ with .Get "author2" }}; {{ . }}{{ end }} + +{{/* Date */}} +{{ with .Get "date" }}({{ . }}).{{ end }} + +{{/* Title and URL */}} +{{ with .Get "url" }}{{ end }}{{ with .Get "title" }}{{ . }}{{ end }}{{ if .Get "url" }}{{ end }}. + +{{/* Conference */}} +{{ with .Get "conference" }}{{ . }}.{{ end }} + +{{/* Location */}} +{{ with .Get "location" }}{{ . }}.{{ end }} + +{{/* Archive info */}} +{{ with .Get "original-url" }}Archived from the original{{ end }}{{ with .Get "archive-date" }} on {{ . }}{{ end }}. + +