diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..a5f0346 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-theme-arch"] + path = themes/hugo-theme-arch + url = https://github.com/syui/hugo-theme-arch diff --git a/config.toml b/config.toml index 9498457..ace2494 100644 --- a/config.toml +++ b/config.toml @@ -1,9 +1,10 @@ -baseUrl = "http://example.org" -languageCode = "en-US" +baseUrl = "https://archlinux.mx" +languageCode = "es-MX" title = "Arch Linux México" + # Define the number of posts per site paginate = 10 -theme = "arch" +theme = "hugo-theme-arch" [permalinks] post = "/:year/:month/:day/:slug" diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..7f5022f --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,31 @@ +{{ partial "head" . }} +{{ partial "header" . }} + +
+
+ {{ partial "profile" . }} +
+
+
+
+

+

+

+ {{with .Site.Data.l10n.page_not_found.title}}{{.}}{{end}} +

+

+ {{with .Site.Data.l10n.page_not_found.subtitle}}{{.}}{{end}} +

+
+

+
+
+
+
+ {{ partial "sidebar" . }} +
+
+ +{{ partial "footer" . }} + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..e3cb4f4 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,25 @@ +{{ partial "head" . }} {{ partial "header" . }} + +
+
+
+
+
+ {{ .Title }} +
+
+ {{ $paginator := .Paginate .Data.Pages }} + {{ range $paginator.Pages }} + {{ .Render "summary" }} + {{ end }} +
+
+ {{ partial "pagination" . }} +
+ {{ partial "sidebar" . }} +
+
+ +{{ partial "footer" . }} + + diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..9dc767e --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,13 @@ +{{ partial "head" . }} +{{ partial "header" . }} + +
+
+ {{ partial "single_article" . }} + {{ partial "sidebar" . }} +
+
+ +{{ partial "footer" . }} + + diff --git a/layouts/_default/summary.html b/layouts/_default/summary.html new file mode 100644 index 0000000..6ebff97 --- /dev/null +++ b/layouts/_default/summary.html @@ -0,0 +1,26 @@ +
+
+ +
+ + {{ if isset .Params "banner" }} + + + + {{ else }} + + + + {{ end }} +
+
+

+ {{ .Title }} +

+ +
+
+
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html new file mode 100644 index 0000000..45e2fd1 --- /dev/null +++ b/layouts/_default/terms.html @@ -0,0 +1,29 @@ +{{ partial "head" . }} {{ partial "header" . }} + +
+
+
+
+
+ {{ .Title }} +
+
+
    + {{ $data := .Data }} {{ range $key, $value := .Data.Terms.ByCount }} +
  • + {{ $value.Name }} + {{ $value.Count }} +
  • + {{ end }} +
+
+
+
+ {{ partial "sidebar" . }} +
+
+ +{{ partial "footer" . }} + + + diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..31d340d --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,15 @@ +{{ partial "head" . }} + +
+ {{ partial "header" . }} + +
+ + {{ partial "article_list" . }} + {{ partial "sidebar" . }} +
+
+ +{{ partial "footer" . }} + + diff --git a/layouts/partials/article_first.html b/layouts/partials/article_first.html new file mode 100644 index 0000000..dfa73c0 --- /dev/null +++ b/layouts/partials/article_first.html @@ -0,0 +1,11 @@ +
+ +

+ A simple, lightweight theme +

+

+ You've reached the website for Arch Linux user, I was in mobile-enabled. +

+ +
+
diff --git a/layouts/partials/article_footer.html b/layouts/partials/article_footer.html new file mode 100644 index 0000000..e8a8026 --- /dev/null +++ b/layouts/partials/article_footer.html @@ -0,0 +1,18 @@ + diff --git a/layouts/partials/article_header.html b/layouts/partials/article_header.html new file mode 100644 index 0000000..3226906 --- /dev/null +++ b/layouts/partials/article_header.html @@ -0,0 +1,11 @@ +
+ +

+ +

+ +
+ + +
+
diff --git a/layouts/partials/article_list.html b/layouts/partials/article_list.html new file mode 100644 index 0000000..ec4a37a --- /dev/null +++ b/layouts/partials/article_list.html @@ -0,0 +1,38 @@ +
+ + {{ partial "article_first" . }} + {{ $paginator := .Paginate (where .Site.Pages "Type" "post") }} + {{ range $paginator.Pages }} +
+ +
+ + {{ if and (isset .Params "banner") (not (eq .Params.banner "")) }} + + + {{ partial "article_header" . }} +
+

+ {{ .Summary }} ... +

+

+ + Read more + + +

+
+ +
+
+ {{ end }} + + {{ partial "pagination" . }} +
+ diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..3f994f9 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,8 @@ + diff --git a/layouts/partials/footer_js.html b/layouts/partials/footer_js.html new file mode 100644 index 0000000..c5cb90e --- /dev/null +++ b/layouts/partials/footer_js.html @@ -0,0 +1,19 @@ +{{ template "_internal/google_analytics.html" . }} + + + + + + +{{ "" | safeHTML }} + + + + diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..56dd05f --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,65 @@ + + + + + {{ .Title }} + {{ .Hugo.Generator }} + + + {{ with .Site.Params.author }}{{ end }} + {{ with .Site.Params.site_description }}{{ end }} + {{ if .RSSLink }} + + + {{ end }} + + + + + + + + + + + {{ template "_internal/opengraph.html" . }} + {{ template "_internal/google_news.html" . }} + {{ template "_internal/schema.html" . }} + {{ template "_internal/twitter_cards.html" . }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..13ec3e7 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,20 @@ + diff --git a/layouts/partials/navbar-menu.html b/layouts/partials/navbar-menu.html new file mode 100644 index 0000000..8ca96a7 --- /dev/null +++ b/layouts/partials/navbar-menu.html @@ -0,0 +1,40 @@ + +
  • Home
  • +
  • Packages
  • +
  • Forums
  • + +
  • Bugs
  • +
  • AUR
  • diff --git a/layouts/partials/navbar-search.html b/layouts/partials/navbar-search.html new file mode 100644 index 0000000..1e1a53e --- /dev/null +++ b/layouts/partials/navbar-search.html @@ -0,0 +1,7 @@ + diff --git a/layouts/partials/pagination.html b/layouts/partials/pagination.html new file mode 100644 index 0000000..865d4bd --- /dev/null +++ b/layouts/partials/pagination.html @@ -0,0 +1,14 @@ + diff --git a/layouts/partials/prev_next_post.html b/layouts/partials/prev_next_post.html new file mode 100644 index 0000000..8102ff3 --- /dev/null +++ b/layouts/partials/prev_next_post.html @@ -0,0 +1,24 @@ + + diff --git a/layouts/partials/profile.html b/layouts/partials/profile.html new file mode 100644 index 0000000..647efad --- /dev/null +++ b/layouts/partials/profile.html @@ -0,0 +1,35 @@ + diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html new file mode 100644 index 0000000..85ef7ab --- /dev/null +++ b/layouts/partials/sidebar.html @@ -0,0 +1,14 @@ + diff --git a/layouts/partials/single_article.html b/layouts/partials/single_article.html new file mode 100644 index 0000000..a8656a0 --- /dev/null +++ b/layouts/partials/single_article.html @@ -0,0 +1,29 @@ +
    +
    +
    + {{ if and (isset .Params "banner") (not (eq .Params.banner "")) }} + + {{ end }} + + {{ partial "article_header" . }} +
    + {{ .Content }} +
    + + {{ partial "article_footer" . }} +
    + + {{ partial "prev_next_post" . }} + +
    + +
    + +
    + {{ template "_internal/disqus.html" . }} +
    +
    +
    diff --git a/layouts/partials/social.html b/layouts/partials/social.html new file mode 100644 index 0000000..4d50978 --- /dev/null +++ b/layouts/partials/social.html @@ -0,0 +1,99 @@ +{{ with .Site.Social.github }} + +{{ end }} + +{{ with .Site.Social.bitbucket }} + +{{ end }} + +{{ with .Site.Social.jsfiddle }} + +{{ end }} + +{{ with .Site.Social.codepen }} + +{{ end }} + +{{ with .Site.Social.foursquare }} + +{{ end }} + +{{ with .Site.Social.dribbble }} + +{{ end }} + +{{ with .Site.Social.deviantart }} + +{{ end }} + +{{ with .Site.Social.behance }} + +{{ end }} + +{{ with .Site.Social.flickr }} + +{{ end }} + +{{ with .Site.Social.instagram }} + +{{ end }} + +{{ with .Site.Social.youtube }} + +{{ end }} + +{{ with .Site.Social.vimeo }} + +{{ end }} + +{{ with .Site.Social.vine }} + +{{ end }} + +{{ with .Site.Social.medium}} + +{{ end }} + +{{ with .Site.Social.wordpress }} + +{{ end }} + +{{ with .Site.Social.tumblr }} + +{{ end }} + +{{ with .Site.Social.xing }} + +{{ end }} + +{{ with .Site.Social.linkedin }} + +{{ end }} + +{{ with .Site.Social.slideshare }} + +{{ end }} + +{{ with .Site.Social.stackoverflow }} + +{{ end }} + +{{ with .Site.Social.reddit }} + +{{ end }} + +{{ with .Site.Social.pinterest }} + +{{ end }} + +{{ with .Site.Social.googleplus }} + +{{ end }} + +{{ with .Site.Social.facebook }} + +{{ end }} + +{{ with .Site.Social.twitter }} + +{{ end }} diff --git a/layouts/partials/title.html b/layouts/partials/title.html new file mode 100644 index 0000000..1b4e330 --- /dev/null +++ b/layouts/partials/title.html @@ -0,0 +1,17 @@ + diff --git a/layouts/partials/widgets/categories.html b/layouts/partials/widgets/categories.html new file mode 100644 index 0000000..99947b3 --- /dev/null +++ b/layouts/partials/widgets/categories.html @@ -0,0 +1,19 @@ +{{ if .Site.Params.widgets.categories }} +{{ if not (eq (len .Site.Taxonomies.categories) 0) }} +
    +

    {{with .Site.Data.l10n.widgets.categories.title}}{{.}}{{end}}

    +
    +
      + {{ range $name, $items := .Site.Taxonomies.categories }} +
    • + + {{ $name }} + + {{ len $items }} +
    • + {{ end }} +
    +
    +
    +{{ end }} +{{ end }} diff --git a/layouts/partials/widgets/command.html b/layouts/partials/widgets/command.html new file mode 100644 index 0000000..f95f7fb --- /dev/null +++ b/layouts/partials/widgets/command.html @@ -0,0 +1,7 @@ +
    +
    +

    Template

    + {{ $resp := getJSON "https://api.github.com/repos/syui/hugo-theme-arch/readme" }} + {{ $resp.content | base64Decode | markdownify }} +
    +
    diff --git a/layouts/partials/widgets/documentation.html b/layouts/partials/widgets/documentation.html new file mode 100644 index 0000000..025bcc9 --- /dev/null +++ b/layouts/partials/widgets/documentation.html @@ -0,0 +1,18 @@ +
    +
    +

    + Documentation + +

    +
    +
    diff --git a/layouts/partials/widgets/download.html b/layouts/partials/widgets/download.html new file mode 100644 index 0000000..b448899 --- /dev/null +++ b/layouts/partials/widgets/download.html @@ -0,0 +1,23 @@ +
    +
    + +
    + + +
    +
    +
    + diff --git a/layouts/partials/widgets/recent_articles.html b/layouts/partials/widgets/recent_articles.html new file mode 100644 index 0000000..98824c8 --- /dev/null +++ b/layouts/partials/widgets/recent_articles.html @@ -0,0 +1,31 @@ +{{ if .Site.Params.widgets.recent_articles }} + +
    +
    + +
    +
    +{{ end }} + diff --git a/layouts/partials/widgets/tag_cloud.html b/layouts/partials/widgets/tag_cloud.html new file mode 100644 index 0000000..b11df51 --- /dev/null +++ b/layouts/partials/widgets/tag_cloud.html @@ -0,0 +1,14 @@ +{{ if .Site.Params.widgets.tag_cloud }} +{{ if not (eq (len .Site.Taxonomies.tags) 0) }} +
    +

    + {{with .Site.Data.l10n.widgets.tag_cloud.title}}{{.}}{{end}} +

    +
    + {{ range $name, $items := .Site.Taxonomies.tags }} + {{ $name }} + {{ end }} +
    +
    +{{ end }} +{{ end }} diff --git a/layouts/partials/widgets/tags.html b/layouts/partials/widgets/tags.html new file mode 100644 index 0000000..4d485cb --- /dev/null +++ b/layouts/partials/widgets/tags.html @@ -0,0 +1,21 @@ +{{ if .Site.Params.widgets.tags }} +{{ if not (eq (len .Site.Taxonomies.tags) 0) }} +
    +

    + {{ with .Site.Data.l10n.widgets.tags.title }}{{.}}{{end}} +

    +
    +
      + {{ range $name, $items := .Site.Taxonomies.tags }} +
    • + + {{ $name }} + + {{ len $items }} +
    • + {{ end }} +
    +
    +
    +{{ end }} +{{ end }} diff --git a/layouts/partials/widgets/update.html b/layouts/partials/widgets/update.html new file mode 100644 index 0000000..96eaa77 --- /dev/null +++ b/layouts/partials/widgets/update.html @@ -0,0 +1,113 @@ +
    +
    +

    Recent Updates

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    pep8 1.7.0-1 + any +
    python-keyring 7.2-1 + any +
    rp-pppoe 3.12-1 + i686/x86_64 +
    gsound 1.0.2-1 + i686/x86_64 +
    go-ipfs 0.3.11-1 + i686/x86_64 +
    mps-youtube 0.2.6-1 + any +
    python-sphinx 1.3.4-1 + any +
    gpsbabel 1.5.3-1 + i686/x86_64 +
    marble 15.12.1-2 + i686/x86_64 +
    kdepimlibs 15.12.1-1 + i686/x86_64 +
    libkdcraw 15.12.1-1 + i686/x86_64 +
    dolphin-plugins 15.12.1-1 + i686/x86_64 +
    bomber 15.12.1-1 + i686/x86_64 +
    kross-interpreters 15.12.1-1 + i686/x86_64 +
    kmplot 15.12.1-1 + i686/x86_64 +
    +
    +
    diff --git a/layouts/shortcodes/gallery.html b/layouts/shortcodes/gallery.html new file mode 100644 index 0000000..0233791 --- /dev/null +++ b/layouts/shortcodes/gallery.html @@ -0,0 +1,9 @@ +
    +
    + {{ range .Params }} + + + + {{ end }} +
    +
    diff --git a/layouts/shortcodes/jsfiddle.html b/layouts/shortcodes/jsfiddle.html new file mode 100644 index 0000000..3caba33 --- /dev/null +++ b/layouts/shortcodes/jsfiddle.html @@ -0,0 +1,5 @@ + +

    diff --git a/public/banners/archlinux.png b/public/banners/archlinux.png new file mode 100644 index 0000000..6848d53 Binary files /dev/null and b/public/banners/archlinux.png differ diff --git a/public/banners/placeholder.png b/public/banners/placeholder.png new file mode 100644 index 0000000..50e23ce Binary files /dev/null and b/public/banners/placeholder.png differ diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..7621e12 --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,20 @@ + + + + Categories on Arch Linux México + https://archlinux.mx/categories/ + Recent content in Categories on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + News + https://archlinux.mx/categories/news/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/categories/news/ + + + + + diff --git a/public/categories/news/index.xml b/public/categories/news/index.xml new file mode 100644 index 0000000..69ec3cd --- /dev/null +++ b/public/categories/news/index.xml @@ -0,0 +1,21 @@ + + + + News on Arch Linux México + https://archlinux.mx/categories/news/ + Recent content in News on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + Creating a new theme + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Overview Hugo is a static HTML and CSS website generator written in [Go][]. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. +Hugo relies on Markdown files with front matter for meta data. And you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account. + + + + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..08a3e1b --- /dev/null +++ b/public/index.xml @@ -0,0 +1,30 @@ + + + + Arch Linux México + https://archlinux.mx/ + Recent content on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + Creating a new theme + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Overview Hugo is a static HTML and CSS website generator written in [Go][]. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. +Hugo relies on Markdown files with front matter for meta data. And you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account. + + + + + https://archlinux.mx/1/01/01/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://archlinux.mx/1/01/01/ + null + + + + diff --git a/public/post/index.xml b/public/post/index.xml new file mode 100644 index 0000000..ad20107 --- /dev/null +++ b/public/post/index.xml @@ -0,0 +1,30 @@ + + + + Posts on Arch Linux México + https://archlinux.mx/post/ + Recent content in Posts on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + Creating a new theme + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Overview Hugo is a static HTML and CSS website generator written in [Go][]. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. +Hugo relies on Markdown files with front matter for meta data. And you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account. + + + + + https://archlinux.mx/1/01/01/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://archlinux.mx/1/01/01/ + null + + + + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..644f837 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,54 @@ + + + + + https://archlinux.mx/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/categories/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/tags/golang/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/tags/hugo/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/tags/jekyll/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/categories/news/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/post/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/tags/ + 2016-01-01T00:00:00+00:00 + + + + https://archlinux.mx/1/01/01/ + + + diff --git a/public/tags/golang/index.xml b/public/tags/golang/index.xml new file mode 100644 index 0000000..a0c4e6b --- /dev/null +++ b/public/tags/golang/index.xml @@ -0,0 +1,21 @@ + + + + golang on Arch Linux México + https://archlinux.mx/tags/golang/ + Recent content in golang on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + Creating a new theme + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Overview Hugo is a static HTML and CSS website generator written in [Go][]. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. +Hugo relies on Markdown files with front matter for meta data. And you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account. + + + + diff --git a/public/tags/hugo/index.xml b/public/tags/hugo/index.xml new file mode 100644 index 0000000..5c53691 --- /dev/null +++ b/public/tags/hugo/index.xml @@ -0,0 +1,21 @@ + + + + hugo on Arch Linux México + https://archlinux.mx/tags/hugo/ + Recent content in hugo on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + Creating a new theme + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Overview Hugo is a static HTML and CSS website generator written in [Go][]. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. +Hugo relies on Markdown files with front matter for meta data. And you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account. + + + + diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..56edda9 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,38 @@ + + + + Tags on Arch Linux México + https://archlinux.mx/tags/ + Recent content in Tags on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + golang + https://archlinux.mx/tags/golang/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/tags/golang/ + + + + + hugo + https://archlinux.mx/tags/hugo/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/tags/hugo/ + + + + + jekyll + https://archlinux.mx/tags/jekyll/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/tags/jekyll/ + + + + + diff --git a/public/tags/jekyll/index.xml b/public/tags/jekyll/index.xml new file mode 100644 index 0000000..5d529e5 --- /dev/null +++ b/public/tags/jekyll/index.xml @@ -0,0 +1,21 @@ + + + + jekyll on Arch Linux México + https://archlinux.mx/tags/jekyll/ + Recent content in jekyll on Arch Linux México + Hugo -- gohugo.io + es-MX + Fri, 01 Jan 2016 00:00:00 +0000 + + Creating a new theme + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Fri, 01 Jan 2016 00:00:00 +0000 + + https://archlinux.mx/2016/01/01/creating-a-new-theme/ + Overview Hugo is a static HTML and CSS website generator written in [Go][]. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. +Hugo relies on Markdown files with front matter for meta data. And you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account. + + + + diff --git a/themes/hugo-theme-arch b/themes/hugo-theme-arch new file mode 160000 index 0000000..3320dd0 --- /dev/null +++ b/themes/hugo-theme-arch @@ -0,0 +1 @@ +Subproject commit 3320dd01f3611fe3802ef5e084422acc80061120