diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.toml index 2d7b955..5d932a7 100644 --- a/exampleSite/config/_default/params.toml +++ b/exampleSite/config/_default/params.toml @@ -160,6 +160,10 @@ commento = false scriptSrc = "" # "https://isso.example.com/js/embed.min.js" dataAttrs = "" # "data-isso='https://isso.example.com' data-isso-require-author='true'" +[fastcomments] + enable = false + tenantId = "demo" + [socialOptions] email = "mailto:your@email.com" phone = "" diff --git a/layouts/partials/comments/comments.html b/layouts/partials/comments/comments.html index 5c9419c..aa44855 100644 --- a/layouts/partials/comments/comments.html +++ b/layouts/partials/comments/comments.html @@ -19,5 +19,7 @@ {{ partial "comments/isso.html" . }} {{ else if $.Param "telegram.enable" }} {{ partial "comments/telegram.html" . }} + {{ else if $.Param "fastcomments.enable" }} + {{ partial "comments/fastcomments.html" . }} {{ end }} {{ end }} \ No newline at end of file diff --git a/layouts/partials/comments/fastcomments.html b/layouts/partials/comments/fastcomments.html new file mode 100644 index 0000000..c7b258b --- /dev/null +++ b/layouts/partials/comments/fastcomments.html @@ -0,0 +1,7 @@ + +
+ \ No newline at end of file