Jafner.net/Jafner.dev
2024-06-28 10:23:03 -07:00
..
.gitea/workflows Init 2024-05-28 19:01:48 -07:00
.github/workflows Add missing instance of url parameter 2024-05-28 23:31:13 -07:00
archetypes Init 2024-05-28 19:01:48 -07:00
content Minor polish 2024-06-28 10:23:03 -07:00
public First build 2024-05-28 19:10:33 -07:00
resources/_gen/assets/scss/scss Init 2024-05-28 19:01:48 -07:00
themes Init 2024-05-28 18:59:39 -07:00
.gitmodules Init 2024-05-28 18:59:39 -07:00
.hugo_build.lock Init 2024-05-28 19:01:48 -07:00
docker-compose.yml Init 2024-05-28 19:01:48 -07:00
hugo.toml Write first project: pamidi 2024-05-29 21:14:54 -07:00
README.md Minor polish 2024-06-28 10:23:03 -07:00

Running local dev server

  1. Ensure theme submodule is loaded: git submodule init && git submodule update
  2. Run the server with hugo server --buildDrafts --disableFastRender

Including Images in Content

  1. Place the image file beside the content in the folder.
  2. For a Featured Image, use the line featured_image = "../pamidi.jpg" in the frontmatter.
  3. For an inline image, use {{< image src="../pamidi.jpg" >}}

Note: The working directory for relative resource locations uses the name of the content file as the current location. E.g. referencing the image ./myimage.jpg or ./myimage.jpg from inside the /content/projects/pamidi.md content file, would look for those images at /content/projects/pamidi/myimage.jpg.