diff --git a/content/blog/_index.md b/content/blog/_index.md new file mode 100644 index 0000000..f9f8721 --- /dev/null +++ b/content/blog/_index.md @@ -0,0 +1,14 @@ +--- +title: Blog +mainType: https://schema.org/Blog +itemsType: https://schema.org/BlogPosting" itemprop="blogPost +cascade: + images: + - images + audio: + - audio + videos: + - videos + _build: + publishResources: false +--- diff --git a/content/blog/posts/_index.md b/content/blog/posts/_index.md new file mode 100644 index 0000000..fe9d11e --- /dev/null +++ b/content/blog/posts/_index.md @@ -0,0 +1,4 @@ +--- +title: Blog Posts +ignore: true +--- diff --git a/content/cv/_index.md b/content/cv/_index.md new file mode 100644 index 0000000..473f39c --- /dev/null +++ b/content/cv/_index.md @@ -0,0 +1,8 @@ +--- +title: CV +type: cv +--- + +This section is for things you have done in your life, e.g. jobs, roles, qualifications. + +Click on the sections below to view more details about each experience, or filter the timeline below by using the buttons just above it. diff --git a/content/cv/organisations/_index.md b/content/cv/organisations/_index.md new file mode 100644 index 0000000..69b1b5d --- /dev/null +++ b/content/cv/organisations/_index.md @@ -0,0 +1,4 @@ +--- +title: Organisations +type: cv/organisations +--- diff --git a/content/cv/roles/_index.md b/content/cv/roles/_index.md new file mode 100644 index 0000000..1f1b28f --- /dev/null +++ b/content/cv/roles/_index.md @@ -0,0 +1,4 @@ +--- +title: Roles +type: cv/roles +--- diff --git a/content/locations/_index.md b/content/locations/_index.md new file mode 100644 index 0000000..b800e3a --- /dev/null +++ b/content/locations/_index.md @@ -0,0 +1,7 @@ +--- +title: Locations +date: 2024-02-13 +layout: locations +--- + +Test diff --git a/content/pages/privacy-policy/index.md b/content/pages/privacy-policy/index.md new file mode 100644 index 0000000..8fa84de --- /dev/null +++ b/content/pages/privacy-policy/index.md @@ -0,0 +1,5 @@ +--- +title: Privacy Policy +--- + +TODO - write privacy policy diff --git a/content/portfolio/_index.md b/content/portfolio/_index.md new file mode 100644 index 0000000..2ae4c01 --- /dev/null +++ b/content/portfolio/_index.md @@ -0,0 +1,6 @@ +--- +title: Portfolio +type: portfolio +--- + +This section is for things you have produced, whatever their formats and media. diff --git a/content/styleguide/comments.md b/content/styleguide/comments.md new file mode 100644 index 0000000..6080893 --- /dev/null +++ b/content/styleguide/comments.md @@ -0,0 +1,8 @@ +  +{{% comment + author="Comment author" + source="Comment source" + publishDate="2022-07-05T13:00:00+05:00" +%}} +A comment shortcode. +{{% /comment %}} diff --git a/content/styleguide/images/lena.png b/content/styleguide/images/lena.png new file mode 100644 index 0000000..59ef68a Binary files /dev/null and b/content/styleguide/images/lena.png differ diff --git a/content/styleguide/index.md b/content/styleguide/index.md new file mode 100644 index 0000000..58dfaf3 --- /dev/null +++ b/content/styleguide/index.md @@ -0,0 +1,294 @@ +--- +title: Styleguide + +# Resources +featured_image: lena +resources: + - name: lena + src: images/lena.* + params: + alt: Woman smiling + attr: +--- + +## HTML + +Test paragraph test paragraph test paragraph test paragraph test paragraph test +paragraph test paragraph test paragraph. + +Emphasis text. Alternate voice text. Stress emphasis text. Strong text. Annotated text Strikethrough text. + +Superscript and subscript text. Nested superscript text. Nested subscript text. + +Small text + +Highlighted text. + +Deleted inserted text. + +An inline quotation. + +Machine-readable data + + + +Code + +Ctrl + Alt + Del + +Ctrl + Alt + Del + +a or b + +Sample program output. + +
+  Pre       formatt
+      ed    te
+  xt.
+
+ +A definition of a term. + +Decription list: + +
+
Term
Definition of term
+
+ +Address: + +
+ 123 Fake Street
+ Fakesville
+ USA +
+ + + +Math: + +Block: + + + 1 + + 2 + + + + +Inline e = MC2 math + +Table: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table caption
HeadingHeadingHeading
BodyBodyBody
BodyBodyBody
FooterFooterFooter
+ + + +
+ Summary + Details details details details details details details. +
+ +--- + +## Markdown + +# Heading 1 + +## Heading 2 + +### Heading 3 + +#### Heading 4 + +##### Heading 5 + +###### Heading 6 + +Normal text. **Bold text.** _Italics text._ `Monospace text.` [Internal link](/). + +[External link](https://wikipedia.org). [Mailto link](mailto:foo@bar.baz). [Phone link](tel:0000000). + +Lists: + +- Unordered list +- Unordered list + - Nested unordered list + - Nested unordered list + - Nested unordered list + - Nested unordered list + - Nested unordered list +- Nested unordered list + +1. Ordered list +1. Ordered list + 1. Nested Ordered list + 1. Nested Ordered list + 1. Nested Ordered list + 1. Nested Ordered list + 1. Nested Ordered list +1. Nested Ordered list + +--- + +> Blockquote blockquote blockquote blockquote blockquote blockquote blockquote. + +--- + +Code block: + +``` +int main() { + +} +``` + +Code block with syntax highlighting: + +```c +int main() { + +} +``` + +--- + +Table: + +| Heading | Heading | Heading | +| ------- | ------- | ------- | +| Body | Body | Body | +| Body | Body | Body | + +--- + +## Shortcodes + +Inline picture: + +{{< picture + src="lena" +>}} + +Linked picture: + +{{< picture + src="lena" + link="/" +>}} + +Figure + +{{< figure + src="lena" +>}} + +Linked figure + +{{< figure + src="lena" + link="/" +>}} + +Figure with caption: + +{{< figure + src="lena" + caption="This is a caption" +>}} + +--- + +An abbreviation shortcode: {{< abbr "eg" >}}. + +{{< blockquote + source="Source" +>}} +A blockquote shortcode. +{{< /blockquote >}} + +{{< blockquote + source="Source" + style="epigram" +>}} +An epigram-style blockquote shortcode. +{{< /blockquote >}} + +{{< blockquote + source="Source" + title="Film title" + schemaType="Movie" + style="epigram" +>}} +A blockquote shortcode. +{{< /blockquote >}} + +{{< blockquote + source="Source" + title="Chapter title" + schemaType="Chapter" + titleSeries="Book title" + schemaTypeSeries="Book" + style="epigram" +>}} +A blockquote shortcode. +{{< /blockquote >}} + +{{< blockquote + source="Source" + title="TV episode title" + schemaType="TVEpisode" + titleSeries="TV series title" + schemaTypeSeries="TVSeries" + numberSeries="S01E01" + style="epigram" +>}} +A blockquote shortcode. +{{< /blockquote >}} + +A {{< cite title="cite" >}} shortcode. + +A {{< q >}}short quotation{{< /q >}} shortcode. diff --git a/data/abbreviations.json b/data/abbreviations.json index 2c63c08..eb6f7ef 100644 --- a/data/abbreviations.json +++ b/data/abbreviations.json @@ -1,2 +1,8 @@ { + "eg": { + "lang": "la", + "longTitle": "exemplī grātiā", + "longTitleTrans": "for example", + "shortTitle": "e.g." + } }