5 Star 15 Fork 26

泰晓科技 / tinylab.org

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sitemap.xml 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
falcon 提交于 2021-01-28 05:45 . draft: fix up search issue
---
layout: null
title : Sitemap
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% assign site_url = site.production_url | append:'/' %}
<url>
<loc>{{ site_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
{% for post in site.posts %}
{% if post.draft and post.draft == true %}{% continue %}{% endif %}
<url>
<loc>{{site.production_url}}{{ post.url }}</loc>
{% if post.last_updated %}<lastmod>{{ post.last_updated | date_to_xmlschema }}</lastmod>
{% elsif post.date %}<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
{% else %}<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>{% endif %}
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
{% endfor %}
{% for page in site.pages %}
{% if page.layout != null and page.layout != 'feed' and page.url != "/" and page.url != "/ms/" %}{% if page.url contains ".html" %}{% continue %}{% endif %}
<url>
<loc>{{site.production_url}}{{ page.url | remove: 'index.html' }}</loc>
{% if page.last_updated %}<lastmod>{{ page.last_updated | date_to_xmlschema }}</lastmod>
{% elsif page.date %}<lastmod>{{ page.date | date_to_xmlschema }}</lastmod>
{% else %}<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>{% endif %}
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
{% endif %}{% endfor %}
</urlset>
1
https://gitee.com/tinylab/tinylab.org.git
git@gitee.com:tinylab/tinylab.org.git
tinylab
tinylab.org
tinylab.org
gh-pages

搜索帮助