我刚刚开始使用Github来托管我的博客(使用Jekyll和Liquid)。但是,我有
an issue which I can’t currently fix.如果我能够检测到用户访问的“页面”或“url”,可能会被黑客攻击/解决问题。
就像是:
{% if user_is_currently_at_this_url %} {{ display something }} {% else %} {{ display something else }} {% endif %}
解决方法
page.url是当前页面的URL,没有主机(例如/index.html),如
Page Variables所示。因此,在这种情况下:
{% if page.url == "/index.html" %} something {% else %} other thing {% endif %}
(但是,我不认为你需要这个,你的其他问题可能已经解决了:))