1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <%
- var keywords = '';
- var description = '';
- (function() {
- if (theme.keywords) {
- keywords += theme.keywords;
- keywords += ',';
- }
- if (page.keywords) {
- keywords += page.keywords;
- }
- if (config.description) {
- description += config.description;
- description += ',';
- }
- if (is_post()) {
- description += truncate(strip_html(page.content), {length: 100, omission: ','});
- }
- })();
- %>
- <!--
-
- i.
- Ui
- :
- .r.
- .rJ1UusJUuY:
- .sjuJ11 12jjLujr
- :IKMBBBB BBBBQbUs
- gBBBgZg ZggMBBQJ
- QQ 嫁人要嫁程序员 BBQr
- :YBB 单纯稳重最幸福 DK
- XIgBZdZ iEBBBKb.
- :LuBBBRgMBB BBBQQBBBB.
- YBQBBBQBB BBBBBBBQ.
- :SdQBBQBBBBBMDKs
- :rvYuJusJLvi.
- :::::: ..::::.. .i:i::
- :i: liuyuqi.gov@msn.cn i:i:.
- .. .:...::::::ir...
- .:.i7iLsvsr:r
- i:iiii77Jir:
- :.... .:::
- :rv:ir:..
- .. .....
- .
- JUS
- :gv
- r
- -->
- <!DOCTYPE html>
- <html lang="<%= config.language %>" class="loading">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <title><%= config.title %><% if (config.subtitle){ %> - <%- config.subtitle %><%}%></title>
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
- <meta name="google" content="notranslate" />
- <% if (keywords) { %><meta name="keywords" content="<%= keywords %>"> <% } %>
- <% if (description) { %><meta name="description" content="<%= description %>"> <% } %>
- <% if (config.author){ %><meta name="author" content="<%= config.author %>"> <% } %>
- <% if (theme.rss){ %><link rel="alternative" href="<%- theme.rss %>" title="<%= config.title %>" type="application/atom+xml"> <% } %>
- <% if (theme.favicon){ %><link rel="icon" href="<%- url_for(theme.favicon) %>"> <% } %>
- <%- css(['//cdn.yoqi.me/tools/ql.blog/gitalk.css'])%>
- <%- css(['css/diaspora.css'])%>
- </head>
|