<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>🏔️ Hugo Theme Kita</title>
		<link>https://kita.fratellobigio.com/</link>
		<description>Recent content on 🏔️ Hugo Theme Kita</description>
		<generator>Hugo</generator>
		<language>en</language>
		
		
		
		
			<lastBuildDate>Sun, 10 Jan 2021 00:00:00 +0800</lastBuildDate>
		
			<atom:link href="https://kita.fratellobigio.com/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>In-post APlayer Test</title>
				<link>https://kita.fratellobigio.com/post/aplayer-test/</link>
				<pubDate>Sun, 10 Jan 2021 00:00:00 +0800</pubDate>
				<guid>https://kita.fratellobigio.com/post/aplayer-test/</guid>
				<description>&lt;div class=&#34;post-player-wrapper&#34;&gt;&#xA;  &lt;div&#xA;    class=&#34;post-aplayer&#34;&#xA;    data-base=&#34;https://kita.fratellobigio.com/&#34;&#xA;    data-urls=&#34;/aplayer/berlin.mp3&#34;&#xA;    data-names=&#34;Berlin&#34;&#xA;    data-artists=&#34;Crowander&#34;&#xA;    data-covers=&#34;/aplayer/crowander.jpg&#34;&#xA;  &gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;This post is for in-post APlayer test, above is previous post-player.&lt;/p&gt;&#xA;&lt;p&gt;Music files are all downloaded from &lt;a href=&#34;https://freemusicarchive.org&#34; target=&#34;_blank&#34;&gt;Free Music Archive&lt;/a&gt;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Markdown Syntax</title>
				<link>https://kita.fratellobigio.com/post/markdown-syntax/</link>
				<pubDate>Mon, 11 May 2020 00:00:00 +0000</pubDate>
				<guid>https://kita.fratellobigio.com/post/markdown-syntax/</guid>
				<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;&#xA;&lt;h2 id=&#34;headings&#34;&gt;Headings&lt;/h2&gt;&#xA;&lt;p&gt;The following HTML &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;—&lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; elements represent six levels of section headings. &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; is the highest section level while &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; is the lowest.&lt;/p&gt;</description>
			</item>
			<item>
				<title>About Hugo</title>
				<link>https://kita.fratellobigio.com/about/</link>
				<pubDate>Sat, 11 Apr 2020 19:15:32 +0800</pubDate>
				<guid>https://kita.fratellobigio.com/about/</guid>
				<description>&lt;p&gt;Written in Go, Hugo is an open source static site generator available under the &lt;a href=&#34;https://github.com/gohugoio/hugo/blob/master/LICENSE&#34; target=&#34;_blank&#34;&gt;Apache Licence 2.0.&lt;/a&gt; Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.&lt;/p&gt;&#xA;&lt;p&gt;Hugo makes use of a variety of open source projects including:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/yuin/goldmark&#34; target=&#34;_blank&#34;&gt;https://github.com/yuin/goldmark&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/alecthomas/chroma&#34; target=&#34;_blank&#34;&gt;https://github.com/alecthomas/chroma&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/muesli/smartcrop&#34; target=&#34;_blank&#34;&gt;https://github.com/muesli/smartcrop&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/spf13/cobra&#34; target=&#34;_blank&#34;&gt;https://github.com/spf13/cobra&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/spf13/viper&#34; target=&#34;_blank&#34;&gt;https://github.com/spf13/viper&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.&lt;/p&gt;&#xA;&lt;p&gt;Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Math Typesetting</title>
				<link>https://kita.fratellobigio.com/post/math-typesetting/</link>
				<pubDate>Sun, 08 Mar 2020 00:00:00 +0000</pubDate>
				<guid>https://kita.fratellobigio.com/post/math-typesetting/</guid>
				<description>&lt;p&gt;Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.&lt;/p&gt;&#xA;&lt;p&gt;In this example we will be using &lt;a href=&#34;https://katex.org/&#34; target=&#34;_blank&#34;&gt;KaTeX&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Create a partial under &lt;code&gt;/layouts/partials/math.html&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Within this partial reference the &lt;a href=&#34;https://katex.org/docs/autorender.html&#34; target=&#34;_blank&#34;&gt;Auto-render Extension&lt;/a&gt; or host these scripts locally.&lt;/li&gt;&#xA;&lt;li&gt;Include the partial in your templates like so:&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre&gt;&lt;code&gt;{{ if or .Params.math .Site.Params.math }}&#xA;{{ partial &amp;quot;math.html&amp;quot; . }}&#xA;{{ end }}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;To enable KaTex globally set the parameter &lt;code&gt;math&lt;/code&gt; to &lt;code&gt;true&lt;/code&gt; in a project&amp;rsquo;s configuration&lt;/li&gt;&#xA;&lt;li&gt;To enable KaTex on a per page basis include the parameter &lt;code&gt;math: true&lt;/code&gt; in content files.&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
			</item>
			<item>
				<title>Placeholder Text</title>
				<link>https://kita.fratellobigio.com/post/placeholder-text/</link>
				<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
				<guid>https://kita.fratellobigio.com/post/placeholder-text/</guid>
				<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de&#xA;pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice&#xA;subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc&#xA;caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis&#xA;lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Emoji Support</title>
				<link>https://kita.fratellobigio.com/post/emoji-support/</link>
				<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
				<guid>https://kita.fratellobigio.com/post/emoji-support/</guid>
				<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;&#xA;&lt;p&gt;The &lt;a href=&#34;https://gohugo.io/functions/emojify/&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;emojify&lt;/code&gt;&lt;/a&gt; function can be called directly in templates or &lt;a href=&#34;https://gohugo.io/templates/shortcode-templates/#inline-shortcodes&#34; target=&#34;_blank&#34;&gt;Inline Shortcodes&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;To enable emoji globally, set &lt;code&gt;enableEmoji&lt;/code&gt; to &lt;code&gt;true&lt;/code&gt; in your site’s &lt;a href=&#34;https://gohugo.io/getting-started/configuration/&#34; target=&#34;_blank&#34;&gt;configuration&lt;/a&gt; and then you can type emoji shorthand codes directly in content files; e.g.&lt;/p&gt;&#xA;&lt;p&gt;&lt;code&gt;:s ee_no_evil:[Remove the space]&lt;/code&gt; &amp;#x1f648; &lt;code&gt;:h ear_no_evil:[Remove the space]&lt;/code&gt; &amp;#x1f649; &lt;code&gt;:s peak_no_evil:[Remove the space]&lt;/code&gt; &amp;#x1f64a;&lt;/p&gt;</description>
			</item>
			<item>
				<title>CJK Unicode Test</title>
				<link>https://kita.fratellobigio.com/post/cjk-unicode-test/</link>
				<pubDate>Fri, 09 Mar 2018 00:00:00 +0800</pubDate>
				<guid>https://kita.fratellobigio.com/post/cjk-unicode-test/</guid>
				<description>&lt;p&gt;The following is part of the CJK text, this page is for test use only.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Post-Meta Test with Lots of Tags</title>
				<link>https://kita.fratellobigio.com/post/post-meta-test/</link>
				<pubDate>Wed, 21 Dec 2016 00:00:00 +0000</pubDate>
				<guid>https://kita.fratellobigio.com/post/post-meta-test/</guid>
				<description>&lt;p&gt;&lt;strong&gt;The tags should wrap and not make a horizontal scroll bar appear.&lt;/strong&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;/p&gt;</description>
			</item>
	</channel>
</rss>
