Commit e18a7a02 authored by Van's avatar Van

🐛 #12720

parent d332aa65
<#-- Solo - A small and beautiful blogging system written in Java. Copyright (c) 2010-2019, b3log.org & hacpai.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. --> <#macro head title description=''> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/> <meta name="theme-color" content="#3b3e43"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes"/> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="format-detection" content="telephone=no"/> <title>${title}</title> <#if description != ''> <meta name="description" content="${description}"/> <meta property="og:description" content="${description}"/> <#elseif metaDescription??> <meta name="description" content="${metaDescription}"/> <meta property="og:description" content="${metaDescription}"/> <#else> <meta name="description" content="${blogTitle?html}。${blogSubtitle?html}"/> <meta property="og:description" content="${blogTitle?html}。${blogSubtitle?html}"/> </#if> <#if metaKeywords??> <meta name="keywords" content="${metaKeywords}"/> </#if> <link rel="dns-prefetch" href="${staticServePath}"/> <link rel="dns-prefetch" href="//cdn.jsdelivr.net"/> <link rel="preconnect" href="${staticServePath}"> <link rel="icon" type="image/png" href="${faviconURL}"/> <link rel="apple-touch-icon" href="${faviconURL}"> <link rel="shortcut icon" type="image/x-icon" href="${faviconURL}"> <meta name="copyright" content="B3log"/> <meta http-equiv="Window-target" content="_top"/> <meta property="og:locale" content="${langLabel}"/> <meta property="og:title" content="${title}"/> <meta property="og:site_name" content="${blogTitle?html}"/> <meta property="og:url" content="${servePath}${request.requestURI}<#if request.queryString??>?${request.queryString}</#if>"/> <meta property="og:image" content="${faviconURL}"/> <link rel="search" type="application/opensearchdescription+xml" title="${title}" href="/opensearch.xml"> <link href="${servePath}/rss.xml" title="RSS" type="application/rss+xml" rel="alternate"/> <link rel="manifest" href="${servePath}/manifest.json"> <#if paginationCurrentPageNum??> <#if paginationCurrentPageNum == 1> <link rel="canonical" href="${servePath}${request.requestURI}"> <#else> <link rel="canonical" href="${servePath}${request.requestURI}<#if request.queryString??>?${request.queryString}</#if>"> </#if> <#else> <link rel="canonical" href="${servePath}${request.requestURI}"> </#if> <#nested> <#if htmlHead??> ${htmlHead} </#if> </#macro> <#-- Solo - A small and beautiful blogging system written in Java. Copyright (c) 2010-2019, b3log.org & hacpai.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. --> <#macro head title description=''> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/> <meta name="theme-color" content="#3b3e43"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes"/> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="format-detection" content="telephone=no"/> <title>${title}</title> <#if description != ''> <meta name="description" content="${description}"/> <meta property="og:description" content="${description}"/> <#elseif metaDescription??> <meta name="description" content="${metaDescription}"/> <meta property="og:description" content="${metaDescription}"/> <#else> <#if !blogSubtitle??> <#assign blogSubtitle = ''> </#if> <meta name="description" content="${blogTitle?html}。${blogSubtitle?html}"/> <meta property="og:description" content="${blogTitle?html}。${blogSubtitle?html}"/> </#if> <#if metaKeywords??> <meta name="keywords" content="${metaKeywords}"/> </#if> <link rel="dns-prefetch" href="${staticServePath}"/> <link rel="dns-prefetch" href="//cdn.jsdelivr.net"/> <link rel="preconnect" href="${staticServePath}"> <link rel="icon" type="image/png" href="${faviconURL}"/> <link rel="apple-touch-icon" href="${faviconURL}"> <link rel="shortcut icon" type="image/x-icon" href="${faviconURL}"> <meta name="copyright" content="B3log"/> <meta http-equiv="Window-target" content="_top"/> <meta property="og:locale" content="${langLabel}"/> <meta property="og:title" content="${title}"/> <meta property="og:site_name" content="${blogTitle?html}"/> <meta property="og:url" content="${servePath}${request.requestURI}<#if request.queryString??>?${request.queryString}</#if>"/> <meta property="og:image" content="${faviconURL}"/> <link rel="search" type="application/opensearchdescription+xml" title="${title}" href="/opensearch.xml"> <link href="${servePath}/rss.xml" title="RSS" type="application/rss+xml" rel="alternate"/> <link rel="manifest" href="${servePath}/manifest.json"> <#if paginationCurrentPageNum??> <#if paginationCurrentPageNum == 1> <link rel="canonical" href="${servePath}${request.requestURI}"> <#else> <link rel="canonical" href="${servePath}${request.requestURI}<#if request.queryString??>?${request.queryString}</#if>"> </#if> <#else> <link rel="canonical" href="${servePath}${request.requestURI}"> </#if> <#nested> <#if htmlHead??> ${htmlHead} </#if> </#macro>
\ No newline at end of file \ No newline at end of file
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<#if !blogTitle??>
<#assign blogTitle = welcomeToSoloLabel>
</#if>
<@head title="${title} - ${blogTitle}"> <@head title="${title} - ${blogTitle}">
<link type="text/css" rel="stylesheet" <link type="text/css" rel="stylesheet"
href="${staticServePath}/scss/start.css?${staticResourceVersion}" charset="utf-8"/> href="${staticServePath}/scss/start.css?${staticResourceVersion}" charset="utf-8"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment