mirror of
https://github.com/alex-s168/website.git
synced 2025-09-10 01:05:07 +02:00
19 lines
387 B
Typst
19 lines
387 B
Typst
#import "../common.typ": *
|
|
|
|
#let rev() = [
|
|
#if git_rev != "" {[
|
|
Git revision #flink("https://github.com/alex-s168/website/tree/" + git_rev)[\##short_git_rev]
|
|
]}
|
|
|
|
#if git_commit_date != "" {[
|
|
Modified at #git_commit_date
|
|
]}
|
|
]
|
|
|
|
// authors is list of people in common:people
|
|
#let rev-and-authors(authors) = [
|
|
#rev()
|
|
|
|
Written by #authors.map((p) => person(p)).join[, ]
|
|
]
|