{{ .Params.name }}
+{{ .Params.name }}
{{- range .Params.jobs }}{{ . }}
{{- end }} @@ -41,8 +39,6 @@ {{- end }}diff --git a/assets/build/convImages.sh b/assets/build/convImages.sh index dcafafb..9689030 100755 --- a/assets/build/convImages.sh +++ b/assets/build/convImages.sh @@ -20,12 +20,12 @@ for FILE in public/**/*.@(jpg|jpeg|tif|tiff|png|gif); do NAME=$(basename "$FILE" | cut -d. -f1) EXTENSION=$(basename "$FILE" | cut -d. -f2) for size in ${sizes[@]}; do - magick convert "$FILE" -resize ${size}x${size}\> "${DIR}/${NAME}-${size}.${EXTENSION}" + convert "$FILE" -resize ${size}x${size}\> "${DIR}/${NAME}-${size}.${EXTENSION}" done done # Web Optimized Formats for FILE in public/**/*.@(jpg|jpeg|tif|tiff|png|gif); do - magick convert $PARAMS "$FILE" "${FILE}".webp; - magick convert $PARAMS "$FILE" "${FILE}".avif; -done + convert $PARAMS "$FILE" "${FILE}".webp; + convert $PARAMS "$FILE" "${FILE}".avif; +done \ No newline at end of file diff --git a/assets/build/genIco.sh b/assets/build/genIco.sh index c5feb8f..e3e9fb0 100644 --- a/assets/build/genIco.sh +++ b/assets/build/genIco.sh @@ -6,4 +6,4 @@ # 1. The path of the source file # 2. The output path (with .ico extension) -magick convert -density 300 -define icon:auto-resize=96,64,48,32,16 -background none $1 $2 +convert -density 300 -define icon:auto-resize=96,64,48,32,16 -background none $1 $2 diff --git a/assets/scss/index.scss b/assets/scss/index.scss index ec015fe..c1538c5 100644 --- a/assets/scss/index.scss +++ b/assets/scss/index.scss @@ -207,30 +207,25 @@ img { .team { align-items: center; text-align: center; - .list { - display: flex; - flex-direction: row; - flex-wrap: wrap; - gap: 2rem; - justify-content: center; - a { - color: inherit; - margin: 0 auto; - .member { - display: inline-block; - align-items: center; - text-align: center; - padding: 1rem; - .title { - font-size: x-large; - padding-bottom: 0.1rem; - text-align: center; - } - } - } +} + +.team-list { + display: flex; + flex-direction: row; + flex-wrap: wrap; + a { + color: inherit; + margin: 0 auto; } } +.teammember { + display: inline-block; + align-items: center; + text-align: center; + padding: 1rem; +} + .avatar { width: 15rem; height: 15rem; diff --git a/layouts/partials/team.html b/layouts/partials/team.html index 758b3c9..402f557 100644 --- a/layouts/partials/team.html +++ b/layouts/partials/team.html @@ -8,13 +8,11 @@ {{else if .id}} {{- $id = .id }} {{end}} -{{- $members := where $pages "Params.leaveDate" "==" nil}} -{{- $first := $team.first | default 4}}
{{ . }}
{{- end }} @@ -41,8 +39,6 @@ {{- end }}{{ . }}
{{- end }}