mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-10 21:17:07 +08:00
style: 部分css調整和html優化 improvements: 刪除pwa中的theme-color配置,默認生成meta theme-color close #340 improvements: 優化最後更新時間顯示(1小時內顯示 剛剛,1小時到24小時 顯示 xx小時前,1天到365天 顯示 xx天前,365天后直接顯示日期)
12 lines
601 B
Plaintext
12 lines
601 B
Plaintext
link(rel="manifest" href=url_for(theme.pwa.manifest))
|
|
if(theme.pwa.theme_color)
|
|
meta(name="msapplication-TileColor" content=theme.pwa.theme_color)
|
|
if(theme.pwa.apple_touch_icon)
|
|
link(rel="apple-touch-icon" sizes="180x180" href=url_for(theme.pwa.apple_touch_icon))
|
|
if(theme.pwa.favicon_32_32)
|
|
link(rel="icon" type="image/png" sizes="32x32" href=url_for(theme.pwa.favicon_32_32))
|
|
if(theme.pwa.favicon_16_16)
|
|
link(rel="icon" type="image/png" sizes="16x16" href=url_for(theme.pwa.favicon_16_16))
|
|
if(theme.pwa.mask_icon)
|
|
link(rel="mask-icon" href=url_for(theme.pwa.mask_icon) color="#5bbad5")
|