jekyllt / jasper2

Full-featured Jekyll port of Ghost's default theme Casper v2 👻
https://jekyllt.github.io/jasper2/
MIT License
763 stars 659 forks source link

Fix disqus error #119

Closed HyeonsuRyu closed 3 years ago

HyeonsuRyu commented 3 years ago

I tried to apply disqus to the post, but there was an error. The problem is /_layouts/post.html I fixed this problem using the following methods.

origin code this.page.url = '{{ site.url }}{{ page.url }}'; this.page.identifier ='{{ page.id }}'; this.page.title = '{{ page.title }}';

fixed code var this_page_url = '{{ site.url }}{{ page.url }}'; var this_page_identifier = '{{ page.id }}'; var this_page_title = '{{ page.title }}';

biomadeira commented 3 years ago

Thanks @HyeonsuRyu! I will make the changes to the template!