From 33b8f27d45619c4cb03423cd77d30fe8566a7e18 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Fri, 8 Mar 2024 01:47:25 -0500 Subject: Add support for substitution in title and certain meta tags. --- templates/post_template | 40 +++++----------------------------------- 1 file changed, 5 insertions(+), 35 deletions(-) (limited to 'templates/post_template') diff --git a/templates/post_template b/templates/post_template index 10a93fa..caa87b5 100644 --- a/templates/post_template +++ b/templates/post_template @@ -4,8 +4,11 @@ -Chrisoft::Blog +Chrisoft::Blog(r#"%t") + + + @@ -32,42 +35,9 @@ function ol() else unsetevents(); } window.onresize(); + loadTheme(); _decryptonload(); } -function loadTheme(){ - var thm=document.cookie.replace(new RegExp("(?:(?:^|.*;\\s*)thm\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"); - if(thm.length<2||'0123z'.indexOf(thm[0])==-1||'abz'.indexOf(thm[1])==-1)thm='zz'; - var ent=""; - var d=new Date(); - if(thm[0]=='z') - { - var m=d.getMonth()+1; - if(m>=3&&m<6)thm='0'+thm[1]; - else if(m>=6&&m<9)thm='1'+thm[1]; - else if(m>=9&&m<12)thm='2'+thm[1]; - else thm='3'+thm[1]; - } - if(thm[1]=='z') - {if(d.getHours()>=18||d.getHours()<6)thm=thm[0]+'b';else thm=thm[0]+'a';} - ent=`theme${thm}`; - var R=new RegExp('theme[0-4][ab]'); - for(var i=0;i -- cgit v1.2.3