Skip to content

Commit

Permalink
fixed the broken urls
Browse files Browse the repository at this point in the history
Signed-off-by: Jiaxiao Zhou (Mossaka) <[email protected]>
  • Loading branch information
Mossaka committed Jan 16, 2024
1 parent eaea041 commit 2a61aa5
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
7 changes: 4 additions & 3 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
baseURL = "https://splvm.github.io/virtsys-meetup/"
languageCode = "en-us"
title = "Virtsys Meetup"
theme ="hugo-fresh"
Expand Down Expand Up @@ -34,13 +35,13 @@ disableHugoGeneratorInject = true
title = "Virtualized System Meetup"
subtitle = "A virtual meetup for people interested in containers and Kubernetes"
buttontext = "Schedule"
buttonLink = "/schedule"
buttonLink = "/virtsys-meetup/schedule"
image = "illustrations/worker.svg"

[[params.navbar]]
title = "About"
url = "/about"
url = "/virtsys-meetup/about"

[[params.navbar]]
title = "Schedule"
url = "/schedule"
url = "/virtsys-meetup/schedule"
2 changes: 1 addition & 1 deletion content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Join Slack: TBD
## Misc 📝

- [Join Slack](https://join.slack.com/t/splvm/shared_invite/zt-11c7tkyoy-gNOtZWwSZsE2UFOtXBw2Wg) for async discussion
- If you wish to join 微信 (WeChat), please scan ![WeChat QR Code](/images/WeChat-01-21.jpg)
- If you wish to join 微信 (WeChat), please scan ![WeChat QR Code](/virtsys-meetup/images/WeChat-01-21.jpg)

## Sponsors
32 changes: 32 additions & 0 deletions layouts/partials/hero-body.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{{- $hero := .Site.Params.hero }}
{{- $title := index $hero "title" }}
{{- $subtitle := index $hero "subtitle" }}
{{- $buttonText := index $hero "buttontext" }}
{{- $buttonLink := index $hero "buttonlink" }}
{{- $image := index $hero "image" }}
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered">
<div class="column is-5 is-offset-1 landing-caption">
<h1 class="title is-1 is-bold is-spaced">
{{ $title }}
</h1>
{{ with $subtitle }}
<h2 class="subtitle is-5 is-muted">
{{ . }}
</h2>
{{ end }}
<p>
<a class="button cta rounded primary-btn raised" href="{{ $buttonLink }}">
{{ $buttonText }}
</a>
</p>
</div>
<div class="column is-5 is-offset-1">
<figure class="image is-4by3">
<img src="{{ printf "/virtsys-meetup/images/%s" $image | relURL }}" alt="Description">
</figure>
</div>
</div>
</div>
</div>

0 comments on commit 2a61aa5

Please sign in to comment.