-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xml
37 lines (37 loc) · 7.68 KB
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
<channel>
<title>PuGo</title>
<link>http://pugo.io/</link>
<description>pugo is a simple static site generator</description>
<managingEditor> (pugo)</managingEditor>
<pubDate>Wed, 23 Mar 2016 22:42:44 +0800</pubDate>
<item>
<title>0.10.0 Released - TOML, I18n, Cloud Deploy</title>
<link>http://pugo.io/2016/3/25/0-10-0-release.html</link>
<description><p><code>PuGo</code> 0.10.0 <strong>Beta</strong> is released. There are many changes:</p>

<h2 id="toml-support">TOML support</h2>

<p><code>PuGo</code> support <code>TOML</code> to define meta and front-matter. And now, <code>PuGo</code> converts all default data to TOML instead of INI. But INI is continuing supporting.</p>

<p>You can read the new default <code>meta.toml</code> to learn about the TOML format.</p>

<!--more-->

<h2 id="international">International</h2>

<p><code>PuGo</code> add language files supports in <code>source/lang</code> directory. The default language files contains basic translated values for site. Language files support TOML and INI format.</p>

<p>Read <a href="/en/docs/cnt/i18n.html">Languages</a> to learn how to write language file.</p>

<p>Then the global translation tool is added in template render.</p>

<p>Read <a href="/en/docs/tpl/i18n.html">International</a> to use <code>{{.I18n}}</code>.</p>

<h2 id="deploy-to-cloud-storage">Deploy to Cloud Storage</h2>

<p><code>deploy</code> command add <a href="https://aws.amazon.com/s3/">AWS S3</a> and <a href="http://www.qiniu.com/">Qiniu</a> method. In cloud storage service, you can upload static files to serve public, and bind your domain to the cloud bucket. So just like running static website.</p>

<p>Read <a href="/en/docs/deploy/cloud.html">AWS S3 and Qiniu</a> to try how to deploy.</p>
</description>
<author>pugo</author>
<pubDate>Fri, 25 Mar 2016 00:00:00 +0000</pubDate>
</item>
<item>
<title>0.9.0 Released - Deployment support</title>
<link>http://pugo.io/2015/12/31/0-9-0-release.html</link>
<description><p><code>PuGo</code> 0.9.0 <strong>stable</strong> version is released. It contains many updates.</p>

<h2 id="deploy-support">Deploy support</h2>

<p><code>PuGo</code> support <code>deploy</code> to other platforms, such as git, ftp and sftp. The <code>build</code> command can deploy compiled files directly:</p>
<pre><code class="language-bash">$ ./pugo deploy ftp [--options]
</code></pre>

<p>More details in <a href="/en/docs/cmd/deploy.html">Deploy Doc</a>.</p>

<!--more-->

<h2 id="new-theme">New Theme</h2>

<ul>
<li><code>theme/uno</code> - new theme that style copy from ghost&rsquo;s <a href="https://github.com/daleanthony/Uno">uno theme</a>.</li>
</ul>
<pre><code class="language-bash">$ ./pugo build --theme=&quot;theme/uno&quot;
</code></pre>

<h2 id="more-theme-functions">More Theme Functions</h2>

<p>Avoid HTML escape in go:</p>
<pre><code class="language-html">&lt;p&gt;{{HTML &quot;&lt;span&gt;html&lt;/span&gt;&quot;}}&lt;/p&gt;
</code></pre>

<p>Build Correct Url:</p>
<pre><code class="language-html">&lt;a href=&quot;{{fullUrl .Post.Url}}&quot;&gt;{{.Post.Title}}&lt;/a&gt;
&lt;!-- http://domain/base/{{.Post.Url}} --&gt;
</code></pre>

<p>International support:</p>
<pre><code class="language-html">&lt;!-- read more or 阅读更多 --&gt;
read more : {{.I18n.Tr &quot;post.readmore&quot;}}
</code></pre>

<p>Read <a href="/en/docs/tpl/i18n.html">I18n</a> and <a href="/en/docs/tpl/helper.html">Helper</a> to get more details.</p>
</description>
<author>pugo</author>
<pubDate>Thu, 31 Dec 2015 00:00:00 +0000</pubDate>
</item>
<item>
<title>0.8.0 Released - 'new' Command</title>
<link>http://pugo.io/2015/11/20/0-8-0-release.html</link>
<description><p><code>PuGo</code> 0.8.0 <strong>stable</strong> version is released. It contains some updates.</p>

<h2 id="new-commands">New Commands</h2>

<ul>
<li><code>new</code> creates new <code>site</code>, <code>post</code> and <code>page</code>.</li>
</ul>
<pre><code class="language-bash">
$ ./pugo new site
$ ./pugo new post

</code></pre>

<!--more-->

<ul>
<li><code>build</code> compiles all data to static files that can be served by http server like <code>nginx</code>.</li>
</ul>
<pre><code class="language-bash">
$ ./pugo build --dest=&quot;target-directory&quot;
$ ./pugo build --watch

</code></pre>

<p>Read <a href="/docs/commands.html">Commands</a> to get more details.</p>

<h2 id="new-theme">New Theme</h2>

<ul>
<li><code>theme/pure</code> - a theme created by purecss</li>
</ul>
</description>
<author>pugo</author>
<pubDate>Fri, 20 Nov 2015 00:00:00 +0000</pubDate>
</item>
<item>
<title>0.7.0 Released - First Version</title>
<link>http://pugo.io/2015/11/14/0-7-0-release.html</link>
<description><p>I&rsquo;m excited to announce <code>Pugo.Static</code> 0.7.0 <strong>stable</strong> version. It&rsquo;s the first version to public. So it finished all basic features and is reliable in production.</p>

<!--more-->

<p>In this version, it contains major features as site generator:</p>

<ul>
<li>compile <code>markdown</code> content to a post or page with several meta values</li>
<li>watch content files to rebuild static pages automatically</li>
<li>post tags, post archive, rss feed, xml sitemap are supported</li>
<li>simply customize the navbar, template and site info</li>
<li>a rough debug mode for developers</li>
</ul>

<p>In next version, it plans to add:</p>

<ul>
<li><code>new</code> command line method to create site, post and page (probably)</li>
<li><code>toml</code> support and use to instead of ini cases (probably)</li>
</ul>
</description>
<author>pugo</author>
<pubDate>Sat, 14 Nov 2015 00:00:00 +0000</pubDate>
</item>
</channel>
</rss>