Skip to content

About Section

joe.c.starr edited this page Jan 25, 2024 · 1 revision

When editing be careful to write correctly formatted YAML. In YAML indentation matters. A short intro to YAML can be found here.


Description

The about section is the second section displayed on the landing page. This is intended to be a short intro to yourself.

image

  about:
    enable: true
    title: "About Me"
    # image: "/images/Pythagoras.jpeg"
    content: |-
        In dolor dolor, eleifend at leo a, viverra convallis risus. Aliquam eu leo
        diam. Vivamus at urna dignissim, venenatis dolor ut, laoreet elit.
        Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    skills:
      enable: true
      title: "Here are some of my research interests:"
      items:
        - "Triangles"
        - "Circles"
        - "Squares"
        - "Points"
        - "Angles"

Configuration

Enable

true/false if set to false will hide the hero section.

  about:
    enable: true

Title

A string displayed at the top of the section. Reference image.

  about:
    ...
    title: "About Me"

image

An image to display to the left of the content. Note: The leading # must be remove to enable image.

  about:
    ...
    # image: "/images/Pythagoras.jpeg"

content

A string displayed under the title of the section. Reference image. Note: |- tells yaml to expect a multi-line string, white space is important here.

  about:
    ...
    content: |-
        In dolor dolor, eleifend at leo a, viverra convallis risus. Aliquam eu leo
        diam. Vivamus at urna dignissim, venenatis dolor ut, laoreet elit.
        Lorem ipsum dolor sit amet, consectetur adipiscing elit.

skills

A list of skill to display in the section below content. Reference image.

  about:
    ...
    skills:
      enable: true
      title: "Here are some of my research interests:"
      items:
        - "Triangles"
        - "Circles"
        - "Squares"
        - "Points"
        - "Angles"

enable

true/false if set to false will hide the skills section.

  about:
    ...
    skills:
      enable: true

title

A string at the top of the skills list. Reference image.

  about:
    ...
    skills:
      ...
      title: "Here are some of my research interests:"

items

A list of strings to be displayed as skills.

  about:
    ...
    skills:
      ...
      items:
        - "Triangles"
        - "Circles"
        - "Squares"
        - "Points"
        - "Angles"