Skip to content

Sitemaps

i-rochiño edited this page Apr 28, 2016 · 1 revision

Consultando esta páxina vou facer o que di para engadir un sitemap irocho.github.io/sitemap.xml co contido:

gems:
  - jekyll-sitemap

daquela fabricará sitemap.xml automaticamente.

Se quero facelo a man:

---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    {% for post in site.posts %}
    <url>
        <loc>http://jmcglone.com{{ post.url | remove: 'index.html' }}</loc>
    </url>
    {% endfor %}

    {% for page in site.pages %}
    {% if page.layout != nil %}
    {% if page.layout != 'feed' %}
    <url>
        <loc>http://jmcglone.com{{ page.url | remove: 'index.html' }}</loc>
    </url>
    {% endif %}
    {% endif %}
    {% endfor %}
</urlset>

i-rochiño

Clone this wiki locally