Changeset - 52d8cbe036e1
[Not reviewed]
0 2 0
Vitaly Takmazov - 10 years ago 2015-02-08 14:19:09
vitalyster@gmail.com
Fix deprecation warnings
2 files changed with 3 insertions and 4 deletions:
0 comments (0 inline, 0 general)
_config.yml
Show inline comments
 
# This is the default format. 
 
# For more see: https://github.com/mojombo/jekyll/wiki/Permalinks
 
#permalink: /:categories/:year/:month/:day/:title 
 

	
 
exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md"]
 
auto: true
 
pygments: true
 
highlighter: pygments
 

	
 
# Themes are encouraged to use these universal variables 
 
# so be sure to set them if your theme uses them.
 
#
 
title : Spectrum 2
 
tagline: Spectrum 2 transport
 
author :
 
  name : Jan Kaluza
 
  email : hanzz.k@gmail.com
 
  github : hanzz
 
#  twitter : username
 
#  feedburner : feedname
 

	
 
# The production_url is only used when full-domain names are needed
 
# such as sitemap.txt 
 
# Most places will/should use BASE_PATH to make the urls
 
#
 
# If you have set a CNAME (pages.github.com) set your custom domain here.
 
# Else if you are pushing to username.github.com, replace with your username.
 
# Finally if you are pushing to a GitHub project page, include the project name at the end.
 
#
 
production_url : http://spectrum.im
 

	
 
# All Jekyll-Bootstrap specific configurations are namespaced into this hash
atom.xml
Show inline comments
 
---
 
layout: nil
 
layout: null
 
title : Atom Feed
 
---
 
<?xml version="1.0" encoding="utf-8"?>
 
<feed xmlns="http://www.w3.org/2005/Atom">
 
 
 
 <title>{{ site.title }}</title>
 
 <link href="{{ site.production_url }}/atom.xml" rel="self"/>
 
 <link href="{{ site.production_url }}"/>
 
 <updated>{{ site.time | date_to_xmlschema }}</updated>
 
 <id>{{ site.production_url }}</id>
 
 <author>
 
   <name>{{ site.author.name }}</name>
 
   <email>{{ site.author.email }}</email>
 
 </author>
 

	
 
 {% for post in site.posts %}
 
 <entry>
 
   <title>{{ post.title }}</title>
 
   <link href="{{ site.production_url }}{{ post.url }}"/>
 
   <updated>{{ post.date | date_to_xmlschema }}</updated>
 
   <id>{{ site.production_url }}{{ post.id }}</id>
 
   <content type="html">{{ post.content | xml_escape }}</content>
 
 </entry>
 
 {% endfor %}
 
 
 
</feed>
 
\ No newline at end of file
 
</feed>
0 comments (0 inline, 0 general)