Skip to content

Commit b7f0ab2

Browse files
authored
fix: fix the talks section if statement (#11)
fix #10
1 parent 3615f5c commit b7f0ab2

File tree

8 files changed

+4
-5
lines changed

8 files changed

+4
-5
lines changed

.github/workflows/continuous-deployment.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Continuous Deployment
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
milestone:
5+
types: [closed]
76

87
jobs:
98
deploy:
-14.6 KB
Loading
-172 KB
Loading
-13.6 KB
Loading
-19.8 KB
Loading
-23.6 KB
Loading

layouts/partials/_talks.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Site.Data.content.blog.enable }}
1+
{{ if .Site.Data.content.talks.enable }}
22
<div class="talks">
33
<span class="category-header">
44
<i class="fas fa-bullhorn fa-2x"></i>

layouts/partials/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title>{{ .Site.Title }}</title>
44

55
{{ "<!-- mobile responsive meta -->" | safeHTML }}
6-
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
77
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
88
{{ with site.Params.author }}
99
<meta name="author" content="{{ . }}">{{ end }}

0 commit comments

Comments
 (0)