jekyll-theme-yat icon indicating copy to clipboard operation
jekyll-theme-yat copied to clipboard

Code highlight and photo-swipe can be disabled for post listing page

Open bkoprucu opened this issue 1 year ago • 0 comments

https://github.com/jeffreytse/jekyll-theme-yat/blob/main/_includes/head.html#L17-L18

Disabling the following for post listing page for improved performance:

  {%- include extensions/code-highlight.html -%}
  {%- include extensions/photo-swipe.html -%}

Can be wrapped in something like:

  {%- unless page.name == 'index.html' or page.name == 'posts.html' -%}
    {%- include extensions/code-highlight.html -%}
    {%- include extensions/photo-swipe.html -%}
  {%- endunless %}

bkoprucu avatar Dec 10 '23 10:12 bkoprucu