aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-theme-stack/layouts/partials/comments/provider/vssue.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/hugo-theme-stack/layouts/partials/comments/provider/vssue.html')
-rw-r--r--themes/hugo-theme-stack/layouts/partials/comments/provider/vssue.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/themes/hugo-theme-stack/layouts/partials/comments/provider/vssue.html b/themes/hugo-theme-stack/layouts/partials/comments/provider/vssue.html
deleted file mode 100644
index 79ac381..0000000
--- a/themes/hugo-theme-stack/layouts/partials/comments/provider/vssue.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{{- with .Site.Params.comments.vssue -}}
-<link rel="stylesheet" href="https://unpkg.com/vssue/dist/vssue.min.css" />
-
-<div id="vssue"></div>
-
-<script src="https://unpkg.com/vue@2/dist/vue.runtime.min.js"></script>
-<script src="https://unpkg.com/vssue/dist/vssue.{{ .platform }}.min.js"></script>
-
-<script>
- new Vue({
- el: "#vssue",
- render: (h) =>
- h("Vssue", {
- props: {
- title: "{{ $.Title }}",
- options: {
- autoCreateIssue: {{ default false .autoCreateIssue }},
- owner: "{{ .owner }}",
- repo: "{{ .repo }}",
- clientId: "{{ .clientId }}",
- clientSecret: "{{ .clientSecret }}",
- },
- },
- }),
- });
-</script>
-{{- end -}}