diff --git a/about/index.html b/about/index.html index 8728d85..e89dd57 100644 --- a/about/index.html +++ b/about/index.html @@ -14,7 +14,7 @@ - + @@ -33,20 +33,20 @@ On top of what Contentful already provides, here are some features this theme pr " /> - - - diff --git a/archives/index.html b/archives/index.html index a125a09..fa004a8 100644 --- a/archives/index.html +++ b/archives/index.html @@ -14,7 +14,7 @@ - + diff --git a/articles/asciidoctor-article-template/index.html b/articles/asciidoctor-article-template/index.html index 5d3fa60..69c4b59 100644 --- a/articles/asciidoctor-article-template/index.html +++ b/articles/asciidoctor-article-template/index.html @@ -14,7 +14,7 @@ - + @@ -77,7 +77,7 @@ This is a paragraph. " /> - - - - + @@ -40,12 +40,12 @@ content but you’ll want to draw attention to the audience anyways. " /> - - @@ -56,7 +56,7 @@ Admonition blocks Admonition blocks contain content that are not a part of the m - diff --git a/articles/asciidoctor-syntax-guide/index.html b/articles/asciidoctor-syntax-guide/index.html index e831e5e..2e2103a 100644 --- a/articles/asciidoctor-syntax-guide/index.html +++ b/articles/asciidoctor-syntax-guide/index.html @@ -14,7 +14,7 @@ - + @@ -54,15 +54,15 @@ Heading 6 " /> - +Heading 2 Heading 3 Heading 4 Heading 5 Heading 6"> - +Heading 2 Heading 3 Heading 4 Heading 5 Heading 6"> @@ -72,9 +72,9 @@ Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 "> - +Heading 2 Heading 3 Heading 4 Heading 5 Heading 6"> diff --git a/articles/emoji-support/index.html b/articles/emoji-support/index.html index abd0ac9..c1dc6ac 100644 --- a/articles/emoji-support/index.html +++ b/articles/emoji-support/index.html @@ -14,7 +14,7 @@ - + diff --git a/articles/feed.atom b/articles/feed.atom index 3328a99..5e4d029 100644 --- a/articles/feed.atom +++ b/articles/feed.atom @@ -3,13 +3,9 @@ Articles on More Contentful © 2024 - Hugo + Hugo 2020-05-12T21:29:52+08:00 - https://foo-dogsquared.github.io/hugo-theme-more-contentful/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png - - John Doe - johndoe@example.com - + https://foo-dogsquared.github.io/hugo-theme-more-contentful/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/rss-atom-and-json-feed-support/ RSS, Atom, and JSON Feed Support diff --git a/articles/feed.json b/articles/feed.json index 6ecee15..f8d4a1d 100644 --- a/articles/feed.json +++ b/articles/feed.json @@ -4,6 +4,6 @@ "home_page_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/", "feed_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/feed.json", "description": "Recent content in Articles on More Contentful", - "authors":[{"name":"John Doe"}], + "authors":[], "items": [{"content_html":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eWeb feeds are one of the most common ways for a visitor to keep up with someone who creates content.\nNowadays, most social media has that feature such as the subscribing YouTube channels, following Twitter accounts, and watching Deviantart artists.\nOutside of those, we have simpler things like \u003ca href=\"https://www.rssboard.org/rss-2-0-1\"\u003eRSS\u003c/a\u003e and \u003ca href=\"https://www.jsonfeed.org/\"\u003eJSON\u003c/a\u003e feeds where they are just plain text files describing the content.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThe Contentful theme doesn’t have a web feed export but we can have it with \u003ca href=\"https://gohugo.io/hugo-modules/theme-components/\"\u003etheme components\u003c/a\u003e.\nFor this demo, we’ll use the \u003ca href=\"https://github.com/foo-dogsquared/hugo-web-feeds\"\u003eweb feed component\u003c/a\u003e created by \u003ca href=\"https://foo-dogsquared.github.io/\"\u003efoo-dogsquared\u003c/a\u003e.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIf you’re settling with this option, here’s an example template for installing the web feed module and exporting all of the feed formats all in one fell swoop.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-toml\" data-lang=\"toml\"\u003e[[module.imports]]\n path = \u0026#34;github.com/foo-dogsquared/hugo-web-feeds\u0026#34;\n\n# Visit the following for more information:\n# https://gohugo.io/templates/output-formats\n\n# Defining the media type of the output formats\n# For JSON format, it doesn\u0026#39;t need to be since it\u0026#39;s already built-in into Hugo\n[mediaTypes]\n [mediaTypes.\u0026#34;application/atom+xml\u0026#34;]\n suffixes = [\u0026#34;atom\u0026#34;, \u0026#34;atom.xml\u0026#34;] # You can remove the \u0026#34;atom.xml\u0026#34; if you want\n\n # Redefining RSS media type for the additional suffix\n [mediaTypes.\u0026#34;application/rss+xml\u0026#34;]\n suffixes = [\u0026#34;rss\u0026#34;, \u0026#34;rss.xml\u0026#34;] # You can remove the \u0026#34;rss.xml\u0026#34; if you want\n\n [mediaTypes.\u0026#34;application/feed+json\u0026#34;]\n suffixes = [\u0026#34;json\u0026#34;] # You can remove the \u0026#34;rss.xml\u0026#34; if you want\n\n\n# Including all of the feed output formats in the build\n[outputFormats]\n [outputFormats.Rss]\n mediaType = \u0026#34;application/rss+xml\u0026#34;\n baseName = \u0026#34;feed\u0026#34;\n\n [outputFormats.Atom]\n mediaType = \u0026#34;application/atom+xml\u0026#34;\n baseName = \u0026#34;feed\u0026#34;\n\n [outputFormats.Json]\n mediaType = \u0026#34;application/feed+json\u0026#34;\n baseName = \u0026#34;feed\u0026#34;\n\n\n# Indicating what output formats shall be included\n# for the following kinds\n[outputs]\n # .Site.BaseURL/index.* is available\n home = [\u0026#34;HTML\u0026#34;, \u0026#34;JSON\u0026#34;, \u0026#34;RSS\u0026#34;, \u0026#34;ATOM\u0026#34;]\n\n # .Site.BaseURL/$section/index.* is available\n section = [\u0026#34;HTML\u0026#34;, \u0026#34;JSON\u0026#34;, \u0026#34;RSS\u0026#34;, \u0026#34;ATOM\u0026#34;]\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n","date_modified":"2019-09-04T17:22:44+08:00","date_published":"2019-09-04T17:22:44+08:00","id":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/rss-atom-and-json-feed-support/","summary":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eWeb feeds are one of the most common ways for a visitor to keep up with someone who creates content.\nNowadays, most social media has that feature such as the subscribing YouTube channels, following Twitter accounts, and watching Deviantart artists.\nOutside of those, we have simpler things like \u003ca href=\"https://www.rssboard.org/rss-2-0-1\"\u003eRSS\u003c/a\u003e and \u003ca href=\"https://www.jsonfeed.org/\"\u003eJSON\u003c/a\u003e feeds where they are just plain text files describing the content.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThe Contentful theme doesn’t have a web feed export but we can have it with \u003ca href=\"https://gohugo.io/hugo-modules/theme-components/\"\u003etheme components\u003c/a\u003e.\nFor this demo, we’ll use the \u003ca href=\"https://github.com/foo-dogsquared/hugo-web-feeds\"\u003eweb feed component\u003c/a\u003e created by \u003ca href=\"https://foo-dogsquared.github.io/\"\u003efoo-dogsquared\u003c/a\u003e.\u003c/p\u003e\n\u003c/div\u003e","tags":["this is a test tag","tag2"],"title":"RSS, Atom, and JSON Feed Support","url":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/rss-atom-and-json-feed-support/"},{"content_html":"\n\u003cdiv id=\"preamble\"\u003e\n\u003cdiv class=\"sectionbody\"\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThe purpose of this article to make sure not-so-common features of\nAsciidoctor (i.e. admonition blocks, callouts) are styled and\nfit to the theme.\nIt also serves as a quick introduction to more Asciidoctor as well.\nFeel free to steal this if you want a template for this.\u003c/p\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"sect1\"\u003e\n\u003ch2 id=\"_admonition_blocks\"\u003eAdmonition blocks\u003c/h2\u003e\n\u003cdiv class=\"sectionbody\"\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAdmonition blocks contain content that are not a part of the main\ncontent but you’ll want to draw attention to the audience anyways.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eBy default, Asciidoctor provides five labels for admonitions:\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"ulist\"\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eTIP\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eNOTE\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eIMPORTANT\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCAUTION\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eWARNING\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/div\u003e\n\u003cdiv class=\"sidebarblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cdiv class=\"title\"\u003e\u003ccode\u003eCAUTION\u003c/code\u003e vs \u003ccode\u003eWARNING\u003c/code\u003e\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAs the \u003ca href=\"https://asciidoctor.org/docs/user-manual/#admonition\"\u003euser manual\u003c/a\u003e\nhas said, \u003ccode\u003eCAUTION\u003c/code\u003e and \u003ccode\u003eWARNING\u003c/code\u003e should be used with different semantics.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003e\u003ccode\u003eCAUTION\u003c/code\u003e basically advises the user to observe care.\n\u003ccode\u003eWARNING\u003c/code\u003e warns the user about the dangers or consequences that’ll exist.\u003c/p\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eWriting an admonition is intuitively easy, simply write the label\nin all uppercase and append with a colon.\nThen write the content after.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-asciidoc\" data-lang=\"asciidoc\"\u003eTIP: Lorem ipsum dolor sit amet consectetur adipiscing elit varius cursus\norci nulla, fames nisl sodales scelerisque eu consequat sem imperdiet ac mi\nvivamus tempor, accumsan ad justo odio viverra praesent senectus class egestas duis.\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIt’ll render as this:\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"admonitionblock tip\"\u003e\n\u003ctable\u003e\n\u003ctbody\u003e\u003ctr\u003e\n\u003ctd class=\"icon\"\u003e\n\u003cdiv class=\"title\"\u003eTip\u003c/div\u003e\n\u003c/td\u003e\n\u003ctd class=\"content\"\u003e\nLorem ipsum dolor sit amet consectetur adipiscing elit varius cursus\norci nulla, fames nisl sodales scelerisque eu consequat sem imperdiet ac mi\nvivamus tempor, accumsan ad justo odio viverra praesent senectus class egestas duis.\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\u003c/table\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIn case you want to style the labels differently such as assigning\nappropriate colors or an icon to the rest of the labels,\nhere’s the rest of them:\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"admonitionblock note\"\u003e\n\u003ctable\u003e\n\u003ctbody\u003e\u003ctr\u003e\n\u003ctd class=\"icon\"\u003e\n\u003cdiv class=\"title\"\u003eNote\u003c/div\u003e\n\u003c/td\u003e\n\u003ctd class=\"content\"\u003e\nMalesuada mattis aenean ultrices netus cursus viverra vivamus ultricies,\nvelit molestie penatibus phasellus in ante luctus, habitant suspendisse eros\nturpis taciti risus himenaeos.\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\u003c/table\u003e\n\u003c/div\u003e\n\u003cdiv class=\"admonitionblock important\"\u003e\n\u003ctable\u003e\n\u003ctbody\u003e\u003ctr\u003e\n\u003ctd class=\"icon\"\u003e\n\u003cdiv class=\"title\"\u003eImportant\u003c/div\u003e\n\u003c/td\u003e\n\u003ctd class=\"content\"\u003e\nVelit fringilla feugiat nibh id faucibus scelerisque facilisis ac,\nsuscipit quisque odio libero ullamcorper curabitur fames nascetur, elementum\ntristique hac nisl etiam dictumst dapibus.\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\u003c/table\u003e\n\u003c/div\u003e\n\u003cdiv class=\"admonitionblock caution\"\u003e\n\u003ctable\u003e\n\u003ctbody\u003e\u003ctr\u003e\n\u003ctd class=\"icon\"\u003e\n\u003cdiv class=\"title\"\u003eCaution\u003c/div\u003e\n\u003c/td\u003e\n\u003ctd class=\"content\"\u003e\nTempus dui aptent tempor torquent lacinia sem cursus porta cras semper\naccumsan feugiat, himenaeos mi ullamcorper pharetra enim class eget auctor conubia\nmetus curabitur.\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\u003c/table\u003e\n\u003c/div\u003e\n\u003cdiv class=\"admonitionblock warning\"\u003e\n\u003ctable\u003e\n\u003ctbody\u003e\u003ctr\u003e\n\u003ctd class=\"icon\"\u003e\n\u003cdiv class=\"title\"\u003eWarning\u003c/div\u003e\n\u003c/td\u003e\n\u003ctd class=\"content\"\u003e\nAliquet ut maecenas mollis id enim nibh suscipit quisque posuere cum fusce,\ndignissim ad curabitur odio ac diam pharetra platea vivamus eleifend.\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/tbody\u003e\u003c/table\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"sect1\"\u003e\n\u003ch2 id=\"_callouts\"\u003eCallouts\u003c/h2\u003e\n\u003cdiv class=\"sectionbody\"\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eCallouts are used to add annotations within a verbatim block.\nThis is especially useful for code listings in order to effectively explain what\nis going on within the code.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eHere’s an example of using callouts.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-asciidoc\" data-lang=\"asciidoc\"\u003e[source,python]\n----\nfrom pathlib import Path\nfrom re import compile, match\n\ncurrent_directory = Path(\u0026#34;.\u0026#34;) \u0026lt;1\u0026gt;\nnotes_directory = current_directory / \u0026#34;notes/\u0026#34; \u0026lt;2\u0026gt;\n----\n\u0026lt;1\u0026gt; Created a Path object\n\u0026lt;2\u0026gt; Appending a Path object with \u0026#34;/\u0026#34;\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAnd it’ll render as:\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-python\" data-lang=\"python\"\u003efrom pathlib import Path\nfrom re import compile, match\n\ncurrent_directory = Path(\u0026#34;.\u0026#34;) # \u003cb class=\"conum\"\u003e(1)\u003c/b\u003e\nnotes_directory = current_directory / \u0026#34;notes/\u0026#34; # \u003cb class=\"conum\"\u003e(2)\u003c/b\u003e\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"colist arabic\"\u003e\n\u003col\u003e\n\u003cli\u003e\n\u003cp\u003eCreated a \u003ccode\u003ePath\u003c/code\u003e object\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAppending a \u003ccode\u003ePath\u003c/code\u003e object with \u0026#34;/\u0026#34;\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ol\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eOne of the most important you should style is the callout number\non the code listings block.\nNormally, when a user wants to copy-paste (even though I don’t personally\nencourage it), the callout number gets in the way and they have to\nmanually remove them which can be annoying.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eEither attach the property \u003ccode\u003euser-select\u003c/code\u003e with it or take a part from the\ndefault Asciidoctor stylesheet and include it in your own stylesheet.\u003c/p\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"sect1\"\u003e\n\u003ch2 id=\"_passthroughs\"\u003ePassthroughs\u003c/h2\u003e\n\u003cdiv class=\"sectionbody\"\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eA \u003ca href=\"https://asciidoctor.org/docs/user-manual/#passthroughs\"\u003epassthrough\u003c/a\u003e passes the input as it is on the final output.\nThis is useful for web-based outputs, for example passing raw HTML for interactive scripts or to create a live result.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eBelow is a very simple example with a \u003ca href=\"https://p5js.org/\"\u003ep5.js\u003c/a\u003e sketch.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv id=\"example-sketch\"\u003e\u003c/div\u003e\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\nconst sketchuuuuu = ( sketch ) =\u003e {\n let x = 100;\n let y = 100;\n\n sketch.setup = () =\u003e {\n sketch.createCanvas(300, 380);\n };\n\n sketch.draw = () =\u003e {\n sketch.background(0);\n sketch.fill(255);\n sketch.rect(x,y,50,50);\n sketch.ellipse(sketch[\"mouseX\"], sketch[\"mouseY\"], 20);\n };\n};\n\nlet example_sketch = new p5(sketchuuuuu, \"example-sketch\")\n\u003c/script\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eHere is the input from the source code of this document.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-asciidoctor\" data-lang=\"asciidoctor\"\u003e++++\n\u0026lt;div id=\u0026#34;example-sketch\u0026#34;\u0026gt;\u0026lt;/div\u0026gt;\n\u0026lt;script src=\u0026#34;https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.js\u0026#34;\u0026gt;\u0026lt;/script\u0026gt;\n\u0026lt;script\u0026gt;\nconst sketchuuuuu = ( sketch ) =\u0026gt; {\n let x = 100;\n let y = 100;\n\n sketch.setup = () =\u0026gt; {\n sketch.createCanvas(300, 380);\n };\n\n sketch.draw = () =\u0026gt; {\n sketch.background(0);\n sketch.fill(255);\n sketch.rect(x,y,50,50);\n sketch.ellipse(sketch[\u0026#34;mouseX\u0026#34;], sketch[\u0026#34;mouseY\u0026#34;], 20);\n };\n};\n\nlet example_sketch = new p5(sketchuuuuu, \u0026#34;example-sketch\u0026#34;)\n\u0026lt;/script\u0026gt;\n++++\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThis is the closest instance of \u003ca href=\"https://en.wikipedia.org/wiki/Literate_programming\"\u003eliterate programming\u003c/a\u003e in the web when using Asciidoctor.\n(Sadly, not as flexible or cool as \u003ca href=\"https://orgmode.org/\"\u003eOrg-Mode\u003c/a\u003e or \u003ca href=\"https://jupyter.org/\"\u003eJupyter Notebooks\u003c/a\u003e.)\u003c/p\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n","date_modified":"2019-08-29T22:09:16+08:00","date_published":"2019-08-29T22:09:16+08:00","id":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/asciidoctor-extended-syntax-guide/","summary":"\u003cdiv id=\"preamble\"\u003e\n\u003cdiv class=\"sectionbody\"\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThe purpose of this article to make sure not-so-common features of\nAsciidoctor (i.e. admonition blocks, callouts) are styled and\nfit to the theme.\nIt also serves as a quick introduction to more Asciidoctor as well.\nFeel free to steal this if you want a template for this.\u003c/p\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"sect1\"\u003e\n\u003ch2 id=\"_admonition_blocks\"\u003eAdmonition blocks\u003c/h2\u003e\n\u003cdiv class=\"sectionbody\"\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAdmonition blocks contain content that are not a part of the main\ncontent but you’ll want to draw attention to the audience anyways.\u003c/p\u003e\n\u003c/div\u003e","tags":["asciidoctor","guide"],"title":"Asciidoctor Extended Syntax Guide","url":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/asciidoctor-extended-syntax-guide/"}]} diff --git a/articles/feed.rss b/articles/feed.rss index bc788ea..a0fb1ad 100644 --- a/articles/feed.rss +++ b/articles/feed.rss @@ -4,7 +4,7 @@ Articles on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/ Recent content in Articles on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:29:52 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/articles/hidden-post-test/index.html b/articles/hidden-post-test/index.html index 42e611c..32bcfc8 100644 --- a/articles/hidden-post-test/index.html +++ b/articles/hidden-post-test/index.html @@ -14,7 +14,7 @@ - + @@ -29,12 +29,12 @@ Anyways, this is a test post for the hidden posts feature in Hugo Contentful. " /> - - @@ -45,7 +45,7 @@ Anyways, this is a test post for the hidden posts feature in Hugo Contentful."> - diff --git a/articles/index.html b/articles/index.html index 435c741..f1284a1 100644 --- a/articles/index.html +++ b/articles/index.html @@ -14,7 +14,7 @@ - + diff --git a/articles/markdown-syntax-guide/index.html b/articles/markdown-syntax-guide/index.html index 9a3584f..2d2b0fa 100644 --- a/articles/markdown-syntax-guide/index.html +++ b/articles/markdown-syntax-guide/index.html @@ -14,7 +14,7 @@ - + @@ -317,30 +317,30 @@ Also you can put Markdown into a blockquote.

- - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + +
IDMakeModelYearIDMakeModelYear
1HondaAccord20091HondaAccord2009
2ToyotaCamry20122ToyotaCamry2012
3HyundaiElantra20103HyundaiElantra2010
@@ -375,18 +375,18 @@ Also you can put Markdown into a blockquote.

- - - - + + + + - - - - + + + +
InlineMarkdownInTableInlineMarkdownInTable
italicsboldstrikethroughcodeitalicsboldstrikethroughcode
diff --git a/articles/mathjax-support-for-asciidoctor/index.html b/articles/mathjax-support-for-asciidoctor/index.html index 1c1672d..842ee42 100644 --- a/articles/mathjax-support-for-asciidoctor/index.html +++ b/articles/mathjax-support-for-asciidoctor/index.html @@ -14,7 +14,7 @@ - + @@ -53,7 +53,7 @@ A text that is composed of two tabs and 10 spaces consecutively is one space. " /> - - - - + diff --git a/articles/rss-atom-and-json-feed-support/index.html b/articles/rss-atom-and-json-feed-support/index.html index 56022c2..1508a64 100644 --- a/articles/rss-atom-and-json-feed-support/index.html +++ b/articles/rss-atom-and-json-feed-support/index.html @@ -14,7 +14,7 @@ - + @@ -31,12 +31,12 @@ For this demo, we’ll use the web feed component created by foo-dogsquared. " /> - - @@ -47,7 +47,7 @@ The Contentful theme doesn’t have a web feed export but we can have it with th - diff --git a/categories/asciidoctor/feed.rss b/categories/asciidoctor/feed.rss index 9e1c487..09c923a 100644 --- a/categories/asciidoctor/feed.rss +++ b/categories/asciidoctor/feed.rss @@ -4,7 +4,7 @@ Asciidoctor on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/categories/asciidoctor/ Recent content in Asciidoctor on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Thu, 29 Aug 2019 22:09:16 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/categories/asciidoctor/index.html b/categories/asciidoctor/index.html index 7a52e0f..1207c16 100644 --- a/categories/asciidoctor/index.html +++ b/categories/asciidoctor/index.html @@ -14,7 +14,7 @@ - + diff --git a/categories/category1/feed.rss b/categories/category1/feed.rss index b24e8cc..967800b 100644 --- a/categories/category1/feed.rss +++ b/categories/category1/feed.rss @@ -4,7 +4,7 @@ Category1 on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/categories/category1/ Recent content in Category1 on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:29:52 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/categories/category1/index.html b/categories/category1/index.html index 826832d..fa6c8eb 100644 --- a/categories/category1/index.html +++ b/categories/category1/index.html @@ -14,7 +14,7 @@ - + diff --git a/categories/feed.rss b/categories/feed.rss index d3afe09..a152081 100644 --- a/categories/feed.rss +++ b/categories/feed.rss @@ -4,7 +4,7 @@ Categories on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/categories/ Recent content in Categories on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:38:24 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/categories/guide/feed.rss b/categories/guide/feed.rss index 7369995..4ac5641 100644 --- a/categories/guide/feed.rss +++ b/categories/guide/feed.rss @@ -4,7 +4,7 @@ Guide on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/categories/guide/ Recent content in Guide on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 17:25:55 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/categories/guide/index.html b/categories/guide/index.html index e1b275a..4b2a25b 100644 --- a/categories/guide/index.html +++ b/categories/guide/index.html @@ -14,7 +14,7 @@ - + diff --git a/categories/index.html b/categories/index.html index e603f8f..3c9e6ee 100644 --- a/categories/index.html +++ b/categories/index.html @@ -14,7 +14,7 @@ - + diff --git a/categories/markdown/feed.rss b/categories/markdown/feed.rss index 9965499..e70a636 100644 --- a/categories/markdown/feed.rss +++ b/categories/markdown/feed.rss @@ -4,7 +4,7 @@ Markdown on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/categories/markdown/ Recent content in Markdown on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Wed, 28 Aug 2019 00:09:56 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/categories/markdown/index.html b/categories/markdown/index.html index c2be5bf..237e047 100644 --- a/categories/markdown/index.html +++ b/categories/markdown/index.html @@ -14,7 +14,7 @@ - + diff --git a/categories/recipe/feed.rss b/categories/recipe/feed.rss index 0f08ed4..e57cb5e 100644 --- a/categories/recipe/feed.rss +++ b/categories/recipe/feed.rss @@ -4,7 +4,7 @@ Recipe on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/categories/recipe/ Recent content in Recipe on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:38:24 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/categories/recipe/index.html b/categories/recipe/index.html index b610d3e..bafbd92 100644 --- a/categories/recipe/index.html +++ b/categories/recipe/index.html @@ -14,7 +14,7 @@ - + diff --git a/feed.atom b/feed.atom index 0112b21..78fa7c0 100644 --- a/feed.atom +++ b/feed.atom @@ -3,13 +3,9 @@ More Contentful © 2024 - Hugo + Hugo 2020-10-20T20:38:24+08:00 - https://foo-dogsquared.github.io/hugo-theme-more-contentful/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png - - John Doe - johndoe@example.com - + https://foo-dogsquared.github.io/hugo-theme-more-contentful/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png https://foo-dogsquared.github.io/hugo-theme-more-contentful/articles/rss-atom-and-json-feed-support/ RSS, Atom, and JSON Feed Support diff --git a/feed.json b/feed.json index 7b08541..18dd397 100644 --- a/feed.json +++ b/feed.json @@ -4,7 +4,7 @@ "home_page_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/", "feed_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/feed.json", "description": "Recent content on More Contentful", - "authors":[{"name":"John Doe"}], + "authors":[], "items": diff --git a/feed.rss b/feed.rss index f82e593..4495cf2 100644 --- a/feed.rss +++ b/feed.rss @@ -4,7 +4,7 @@ More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/ Recent content on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:38:24 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/index.html b/index.html index 1914cea..e6ff2a2 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ - + diff --git a/recipes/configurable-list-of-contacts/index.html b/recipes/configurable-list-of-contacts/index.html index 191cfad..89cbb2d 100644 --- a/recipes/configurable-list-of-contacts/index.html +++ b/recipes/configurable-list-of-contacts/index.html @@ -14,7 +14,7 @@ - + @@ -48,7 +48,7 @@ if this key is absent, it will be interpreted as 0. " /> - - - - + @@ -57,13 +57,13 @@ This will add an archive page similar to archive pages like these. " /> - + - + @@ -71,8 +71,8 @@ This will add an archive page similar to archive pages like these. - + diff --git a/recipes/customizing-your-head/index.html b/recipes/customizing-your-head/index.html index 88dea46..e0f9372 100644 --- a/recipes/customizing-your-head/index.html +++ b/recipes/customizing-your-head/index.html @@ -14,7 +14,7 @@ - + @@ -33,13 +33,13 @@ Then, feel free to add your own (or others') scripts and stylesheets, icons " /> - - @@ -50,7 +50,7 @@ Then, feel free to add your own (or others') scripts and stylesheets, icons - diff --git a/recipes/feed.atom b/recipes/feed.atom index 8fa938d..6f56d8e 100644 --- a/recipes/feed.atom +++ b/recipes/feed.atom @@ -3,13 +3,9 @@ Recipes on More Contentful © 2024 - Hugo + Hugo 2020-05-12T17:25:55+08:00 - https://foo-dogsquared.github.io/hugo-theme-more-contentful/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png - - John Doe - johndoe@example.com - + https://foo-dogsquared.github.io/hugo-theme-more-contentful/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/configurable-list-of-contacts/ Configurable list of contacts diff --git a/recipes/feed.json b/recipes/feed.json index 8d40347..31871ba 100644 --- a/recipes/feed.json +++ b/recipes/feed.json @@ -4,6 +4,6 @@ "home_page_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/", "feed_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/feed.json", "description": "Recent content in Recipes on More Contentful", - "authors":[{"name":"John Doe"}], + "authors":[], "items": [{"content_html":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eMost themes offer quick social media links with site configuration.\nHowever, it is only limited to popular media sites such as Facebook, Twitter, Instagram, GitHub, etc.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eTo get around this, we’ll make use of \u003ca href=\"https://gohugo.io/templates/data-templates/\"\u003edata templates\u003c/a\u003e.\nLet’s create a quick game plan how does it work.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThe data is a top-level dictionary/object with each key contains an object with the following fields.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"ulist\"\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eurl\u003c/code\u003e is the…​ contact link itself and it is required to have it.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003ename\u003c/code\u003e is the text to appear in the output.\nAlso required to have.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eweight\u003c/code\u003e is an integer similar to how Hugo sorts the pages with the lower weight having high precedence;\nif this key is absent, it will be interpreted as 0.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAnd here’s the data example in TOML which is placed in \u003ccode\u003edata/contact.toml\u003c/code\u003e.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-toml\" data-lang=\"toml\"\u003e[github]\n name = \u0026#34;GitHub\u0026#34;\n url = \u0026#34;https://github.com/foo-dogsquared\u0026#34;\n\n[gitlab]\n name = \u0026#34;Gitlab\u0026#34;\n url = \u0026#34;https://gitlab.com/foo-dogsquared\u0026#34;\n\n[keybase]\n name = \u0026#34;Keybase\u0026#34;\n url = \u0026#34;https://keybase.io/foo_dogsquared\u0026#34;\n weight = -1\n\n[twitter]\n name = \u0026#34;Twitter\u0026#34;\n url = \u0026#34;https://twitter.com/foo_dogsquared\u0026#34;\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eI want my Keybase profile to appear first than anything else for whatever reason so the \u003ccode\u003eweight\u003c/code\u003e key is set to -1.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eWith this data, we can then create a template out of it.\nI’ve put the following template in a partial named \u003ccode\u003econtacts\u003c/code\u003e (i.e., \u003ccode\u003elayouts/partials/contacts\u003c/code\u003e).\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-go\" data-lang=\"go\"\u003e\u0026lt;address\u0026gt;\n{{- range (sort $.Site.Data.contacts \u0026#34;weight\u0026#34; \u0026#34;asc\u0026#34;) -}}\n| \u0026lt;a rel=\u0026#34;me\u0026#34; href=\u0026#34;{{ .url }}\u0026#34;\u0026gt;{{- .name -}}\u0026lt;/a\u0026gt; |\n{{- end -}}\n\u0026lt;/address\u0026gt;\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eA suggestion (and an exercise) for extending this is to create image links.\nMaybe add another key named \u003ccode\u003eimage\u003c/code\u003e that accepts either URL.\nThe \u003ccode\u003ename\u003c/code\u003e would now be the image alternative text.\u003c/p\u003e\n\u003c/div\u003e\n","date_modified":"2020-10-20T20:38:24+08:00","date_published":"2020-10-20T20:38:24+08:00","id":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/configurable-list-of-contacts/","summary":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eMost themes offer quick social media links with site configuration.\nHowever, it is only limited to popular media sites such as Facebook, Twitter, Instagram, GitHub, etc.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eTo get around this, we’ll make use of \u003ca href=\"https://gohugo.io/templates/data-templates/\"\u003edata templates\u003c/a\u003e.\nLet’s create a quick game plan how does it work.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThe data is a top-level dictionary/object with each key contains an object with the following fields.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"ulist\"\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eurl\u003c/code\u003e is the…​ contact link itself and it is required to have it.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003ename\u003c/code\u003e is the text to appear in the output.\nAlso required to have.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eweight\u003c/code\u003e is an integer similar to how Hugo sorts the pages with the lower weight having high precedence;\nif this key is absent, it will be interpreted as 0.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/div\u003e","tags":null,"title":"Configurable list of contacts","url":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/configurable-list-of-contacts/"},{"content_html":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThis will add an archive page similar to archive pages \u003ca href=\"https://davidtranscend.com/archives/\"\u003elike\u003c/a\u003e \u003ca href=\"https://lukesmith.xyz/blogindex.html\"\u003ethese\u003c/a\u003e.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-go\" data-lang=\"go\"\u003e{{- define \u0026#34;main\u0026#34; -}}\n\n\u0026lt;h1\u0026gt;{{ .Title }}\u0026lt;/h1\u0026gt;\n\n{{ .Content }}\n\n\u0026lt;hr\u0026gt;\n\n{{- /* Creating a section that lists out regular pages by year */ -}}\n{{ range $.Site.RegularPages.GroupByPublishDate \u0026#34;2006\u0026#34; }}\n {{- /* Skip regular pages with an invalid creation date string. */ -}}\n {{- /* This is convenient if we want to exclude certain posts to be listed by giving no value to `date` in the frontmatter. */ -}}\n {{- /* We will also exclude hidden pages. */ -}}\n {{ if ne .Key \u0026#34;0001\u0026#34; }}\n \u0026lt;section data-year=\u0026#34;{{ .Key }}\u0026#34;\u0026gt;\n \u0026lt;h2 id=\u0026#34;{{ .Key }}\u0026#34;\u0026gt;{{ .Key }}\u0026lt;/h2\u0026gt;\n \u0026lt;ul\u0026gt;\n {{- range where .Pages \u0026#34;Params.hidden\u0026#34; \u0026#34;!=\u0026#34; true -}}\n \u0026lt;li\u0026gt;\n \u0026lt;date\u0026gt;{{ .Date.Format \u0026#34;2006-01-02\u0026#34; }}\u0026lt;/date\u0026gt; -\n \u0026lt;a aria-label=\u0026#34;{{ .Title }}\u0026#34; href=\u0026#34;{{ .Permalink }}\u0026#34;\u0026gt;{{ .Title }}\u0026lt;/a\u0026gt;\n \u0026lt;/li\u0026gt;\n {{- end -}}\n \u0026lt;/ul\u0026gt;\n \u0026lt;/section\u0026gt;\n {{- end }}\n{{ end }}\n\n{{- end -}}\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eWe will simply add this as a layout in our customized theme.\nLet’s call it \u003ccode\u003earchives\u003c/code\u003e so we have to add a file in \u003ccode\u003elayouts/_default/archives.html\u003c/code\u003e then set a page of our project with the \u003ccode\u003elayout\u003c/code\u003e key in the frontmatter.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eWe want the archives page to be accessed at \u003ccode\u003e$.Site.BaseURL/archives\u003c/code\u003e so we’ll simply create \u003ccode\u003earchives.adoc\u003c/code\u003e (\u003ca href=\"https://gohugo.io/content-management/formats/#list-of-content-formats\"\u003eany valid content files with certain file extensions can do\u003c/a\u003e, I’m using \u003ca href=\"https://asciidoctor.org/\"\u003eAsciidoctor\u003c/a\u003e) with the following example content.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-asciidoctor\" data-lang=\"asciidoctor\"\u003e---\ntitle: \u0026#34;Archives\u0026#34;\nlayout: \u0026#34;archive\u0026#34;\n---\n\n= Archives\n\nThis is the archives of the century.\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n","date_modified":"2020-10-20T20:36:55+08:00","date_published":"2020-10-20T20:36:55+08:00","id":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/creating-an-archive-page/","summary":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eThis will add an archive page similar to archive pages \u003ca href=\"https://davidtranscend.com/archives/\"\u003elike\u003c/a\u003e \u003ca href=\"https://lukesmith.xyz/blogindex.html\"\u003ethese\u003c/a\u003e.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-go\" data-lang=\"go\"\u003e{{- define \u0026#34;main\u0026#34; -}}\n\n\u0026lt;h1\u0026gt;{{ .Title }}\u0026lt;/h1\u0026gt;\n\n{{ .Content }}\n\n\u0026lt;hr\u0026gt;\n\n{{- /* Creating a section that lists out regular pages by year */ -}}\n{{ range $.Site.RegularPages.GroupByPublishDate \u0026#34;2006\u0026#34; }}\n {{- /* Skip regular pages with an invalid creation date string. */ -}}\n {{- /* This is convenient if we want to exclude certain posts to be listed by giving no value to `date` in the frontmatter. */ -}}\n {{- /* We will also exclude hidden pages. */ -}}\n {{ if ne .Key \u0026#34;0001\u0026#34; }}\n \u0026lt;section data-year=\u0026#34;{{ .Key }}\u0026#34;\u0026gt;\n \u0026lt;h2 id=\u0026#34;{{ .Key }}\u0026#34;\u0026gt;{{ .Key }}\u0026lt;/h2\u0026gt;\n \u0026lt;ul\u0026gt;\n {{- range where .Pages \u0026#34;Params.hidden\u0026#34; \u0026#34;!=\u0026#34; true -}}\n \u0026lt;li\u0026gt;\n \u0026lt;date\u0026gt;{{ .Date.Format \u0026#34;2006-01-02\u0026#34; }}\u0026lt;/date\u0026gt; -\n \u0026lt;a aria-label=\u0026#34;{{ .Title }}\u0026#34; href=\u0026#34;{{ .Permalink }}\u0026#34;\u0026gt;{{ .Title }}\u0026lt;/a\u0026gt;\n \u0026lt;/li\u0026gt;\n {{- end -}}\n \u0026lt;/ul\u0026gt;\n \u0026lt;/section\u0026gt;\n {{- end }}\n{{ end }}\n\n{{- end -}}\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e","tags":null,"title":"Creating an archive page","url":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/creating-an-archive-page/"}]} diff --git a/recipes/feed.rss b/recipes/feed.rss index c50ed20..55716cc 100644 --- a/recipes/feed.rss +++ b/recipes/feed.rss @@ -4,7 +4,7 @@ Recipes on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/recipes/ Recent content in Recipes on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 17:25:55 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/recipes/index.html b/recipes/index.html index db0c29b..c042426 100644 --- a/recipes/index.html +++ b/recipes/index.html @@ -14,7 +14,7 @@ - + @@ -27,16 +27,16 @@ Though this only applies specifically to Contentful and may need some tweaking w " /> - + - + - + diff --git a/recipes/open-graph-protocol/index.html b/recipes/open-graph-protocol/index.html index cd23f44..64d3654 100644 --- a/recipes/open-graph-protocol/index.html +++ b/recipes/open-graph-protocol/index.html @@ -14,7 +14,7 @@ - + @@ -35,13 +35,13 @@ If you want more control and customized version of the output, I recommend to co " /> - - @@ -53,7 +53,7 @@ If you want more control and customized version of the output, I recommend to co - diff --git a/recipes/twitter-cards/index.html b/recipes/twitter-cards/index.html index 04f4008..d5b7850 100644 --- a/recipes/twitter-cards/index.html +++ b/recipes/twitter-cards/index.html @@ -14,7 +14,7 @@ - + @@ -35,13 +35,13 @@ You could also roll your own Twitter cards but I recommend to modify the interna " /> - - @@ -53,7 +53,7 @@ You could also roll your own Twitter cards but I recommend to modify the interna - diff --git a/tags/asciidoctor/feed.rss b/tags/asciidoctor/feed.rss index 8e85f0b..385be83 100644 --- a/tags/asciidoctor/feed.rss +++ b/tags/asciidoctor/feed.rss @@ -4,7 +4,7 @@ Asciidoctor on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/asciidoctor/ Recent content in Asciidoctor on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Thu, 29 Aug 2019 22:09:16 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/asciidoctor/index.html b/tags/asciidoctor/index.html index 2940370..11a00a9 100644 --- a/tags/asciidoctor/index.html +++ b/tags/asciidoctor/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/emoji/feed.rss b/tags/emoji/feed.rss index 4de40ec..eba47cf 100644 --- a/tags/emoji/feed.rss +++ b/tags/emoji/feed.rss @@ -4,7 +4,7 @@ Emoji on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/emoji/ Recent content in Emoji on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Wed, 28 Aug 2019 12:11:22 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/emoji/index.html b/tags/emoji/index.html index be48397..fb84f3f 100644 --- a/tags/emoji/index.html +++ b/tags/emoji/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/extending/feed.rss b/tags/extending/feed.rss index fb4710f..7b8e01e 100644 --- a/tags/extending/feed.rss +++ b/tags/extending/feed.rss @@ -4,7 +4,7 @@ Extending on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/extending/ Recent content in Extending on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 17:25:55 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/extending/index.html b/tags/extending/index.html index 16f1f01..2ebf687 100644 --- a/tags/extending/index.html +++ b/tags/extending/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/feed.rss b/tags/feed.rss index dc219c1..e1e6d5a 100644 --- a/tags/feed.rss +++ b/tags/feed.rss @@ -4,7 +4,7 @@ Tags on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/ Recent content in Tags on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:35:39 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/guide/feed.rss b/tags/guide/feed.rss index 2e8fc8f..6975a5a 100644 --- a/tags/guide/feed.rss +++ b/tags/guide/feed.rss @@ -4,7 +4,7 @@ Guide on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/guide/ Recent content in Guide on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Thu, 29 Aug 2019 22:09:16 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/guide/index.html b/tags/guide/index.html index 0f1c1d8..f739f87 100644 --- a/tags/guide/index.html +++ b/tags/guide/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/index.html b/tags/index.html index 27b922c..afb1077 100644 --- a/tags/index.html +++ b/tags/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/markdown/feed.rss b/tags/markdown/feed.rss index 2fc7496..def6de7 100644 --- a/tags/markdown/feed.rss +++ b/tags/markdown/feed.rss @@ -4,7 +4,7 @@ Markdown on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/markdown/ Recent content in Markdown on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Wed, 28 Aug 2019 00:09:56 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/markdown/index.html b/tags/markdown/index.html index 3b72fb0..b4d15b8 100644 --- a/tags/markdown/index.html +++ b/tags/markdown/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/mathjax/feed.rss b/tags/mathjax/feed.rss index 23b46e8..e078637 100644 --- a/tags/mathjax/feed.rss +++ b/tags/mathjax/feed.rss @@ -4,7 +4,7 @@ Mathjax on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/mathjax/ Recent content in Mathjax on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Wed, 28 Aug 2019 01:47:02 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/mathjax/index.html b/tags/mathjax/index.html index d8865ef..ddf66fd 100644 --- a/tags/mathjax/index.html +++ b/tags/mathjax/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/seo/feed.rss b/tags/seo/feed.rss index b1a124c..38c48b7 100644 --- a/tags/seo/feed.rss +++ b/tags/seo/feed.rss @@ -4,7 +4,7 @@ Seo on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/seo/ Recent content in Seo on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:35:39 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/seo/index.html b/tags/seo/index.html index eb28ed4..2d9d051 100644 --- a/tags/seo/index.html +++ b/tags/seo/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/social-media/feed.rss b/tags/social-media/feed.rss index 2df8d43..355fee8 100644 --- a/tags/social-media/feed.rss +++ b/tags/social-media/feed.rss @@ -4,7 +4,7 @@ Social Media on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/social-media/ Recent content in Social Media on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:35:39 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/social-media/index.html b/tags/social-media/index.html index 11292a8..2fba366 100644 --- a/tags/social-media/index.html +++ b/tags/social-media/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/tag1/feed.rss b/tags/tag1/feed.rss index 6af1d98..6f654e0 100644 --- a/tags/tag1/feed.rss +++ b/tags/tag1/feed.rss @@ -4,7 +4,7 @@ Tag1 on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/tag1/ Recent content in Tag1 on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:29:52 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/tag1/index.html b/tags/tag1/index.html index 32ebc89..3ae0a40 100644 --- a/tags/tag1/index.html +++ b/tags/tag1/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/tag2/feed.rss b/tags/tag2/feed.rss index f8f415a..0c29a6a 100644 --- a/tags/tag2/feed.rss +++ b/tags/tag2/feed.rss @@ -4,7 +4,7 @@ Tag2 on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/tag2/ Recent content in Tag2 on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:29:52 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/tag2/index.html b/tags/tag2/index.html index d42bbff..115195c 100644 --- a/tags/tag2/index.html +++ b/tags/tag2/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/theme/feed.rss b/tags/theme/feed.rss index dca895f..e424aad 100644 --- a/tags/theme/feed.rss +++ b/tags/theme/feed.rss @@ -4,7 +4,7 @@ Theme on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/theme/ Recent content in Theme on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 17:25:55 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/theme/index.html b/tags/theme/index.html index 0f4adb4..22d47d0 100644 --- a/tags/theme/index.html +++ b/tags/theme/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/this-is-a-test-tag/feed.rss b/tags/this-is-a-test-tag/feed.rss index 8606afa..f1634ce 100644 --- a/tags/this-is-a-test-tag/feed.rss +++ b/tags/this-is-a-test-tag/feed.rss @@ -4,7 +4,7 @@ This Is a Test Tag on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/this-is-a-test-tag/ Recent content in This Is a Test Tag on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Wed, 04 Sep 2019 17:22:44 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/this-is-a-test-tag/index.html b/tags/this-is-a-test-tag/index.html index c3e346c..a2e960b 100644 --- a/tags/this-is-a-test-tag/index.html +++ b/tags/this-is-a-test-tag/index.html @@ -14,7 +14,7 @@ - + diff --git a/tags/twitter/feed.rss b/tags/twitter/feed.rss index 5647517..fbe13da 100644 --- a/tags/twitter/feed.rss +++ b/tags/twitter/feed.rss @@ -4,7 +4,7 @@ Twitter on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tags/twitter/ Recent content in Twitter on More Contentful - Hugo v0.135.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.ioen-us© 2024 to the author(s) behind More Contentful Tue, 20 Oct 2020 20:31:32 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tags/twitter/index.html b/tags/twitter/index.html index a1ad378..aaf2945 100644 --- a/tags/twitter/index.html +++ b/tags/twitter/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/about/index.html b/tl/about/index.html index 8fa265c..d7d855c 100644 --- a/tl/about/index.html +++ b/tl/about/index.html @@ -14,7 +14,7 @@ - + @@ -33,20 +33,20 @@ Iilan sa mga tampok ng More Contentful, di lang mga features mula sa orihinal na " /> - - - diff --git a/tl/archives/index.html b/tl/archives/index.html index 975d322..23c3737 100644 --- a/tl/archives/index.html +++ b/tl/archives/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/articles/feed.atom b/tl/articles/feed.atom index 731786a..b8b16c9 100644 --- a/tl/articles/feed.atom +++ b/tl/articles/feed.atom @@ -3,13 +3,9 @@ Articles on More Contentful © 2024 - Hugo + Hugo 2020-05-12T21:28:27+08:00 - https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png - - John Doe - johndoe@example.com - + https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/hidden-post-test/ Isang hidden post test diff --git a/tl/articles/feed.json b/tl/articles/feed.json index 87d4172..9f51115 100644 --- a/tl/articles/feed.json +++ b/tl/articles/feed.json @@ -4,6 +4,6 @@ "home_page_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/", "feed_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/feed.json", "description": "Recent content in Articles on More Contentful", - "authors":[{"name":"John Doe"}], + "authors":[], "items": [{"content_html":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eKamusta!\nAt papano mo nahanap to?!\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIsang test ito para sa hidden post feature ng Hugo Contentful.\u003c/p\u003e\n\u003c/div\u003e\n","date_modified":"2020-05-12T21:28:27+08:00","date_published":"2020-05-12T21:28:27+08:00","id":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/hidden-post-test/","summary":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eKamusta!\nAt papano mo nahanap to?!\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIsang test ito para sa hidden post feature ng Hugo Contentful.\u003c/p\u003e\n\u003c/div\u003e","tags":["tag1","tag2"],"title":"Isang hidden post test","url":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/hidden-post-test/"},{"content_html":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAng Hugo theme na ito ay mayroon mga templates para sa RSS, Atom, and JSON feeds.\nIto ay nakatutulong para sa madaling pag-publish ng iyong mga gawa.\nAng mga output ng mga templates ay napatunayan laban sa mga validator na may wastong marka.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIto ang mga sanggunian ng ginamit upang maisagawa ang mga templates.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"ulist\"\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ca href=\"https://tools.ietf.org/html/rfc4287\"\u003eAtom 1.0 - IETF RFC4287\u003c/a\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ca href=\"https://jsonfeed.org/version/1\"\u003eJSON Feed version 1 specifications\u003c/a\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ca href=\"https://cyber.harvard.edu/rss/rss.html\"\u003eRSS 2.0 specifications\u003c/a\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eNaka-activate ang mga web feeds at maaaring mo makita ang mga iyon sa sumusunod na weblinks:\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"ulist\"\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003eRSS\u003c/strong\u003e: \u003ccode\u003e$HUGO_URL/feed.rss\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003eAtom\u003c/strong\u003e: \u003ccode\u003e$HUGO_URL/feed.atom\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003eJSON\u003c/strong\u003e: \u003ccode\u003e$HUGO_URL/feed.json\u003c/code\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003ePara i-enable ang mga web feeds, kailangan mong gumamit ng \u003ca href=\"https://gohugo.io/templates/output-formats\"\u003eoutput formats\u003c/a\u003e sa iyong site configuration.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAng sumusunod ay ang parte ng site configuration para sa web feeds ng demo.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"listingblock\"\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cpre class=\"highlight\"\u003e\u003ccode class=\"language-toml\" data-lang=\"toml\"\u003e# Visit the following for more information:\n# https://gohugo.io/templates/output-formats\n\n# Defining the media type of the output formats\n# For JSON format, it doesn\u0026#39;t need to be since it\u0026#39;s already built-in into Hugo\n[mediaTypes]\n [mediaTypes.\u0026#34;application/atom+xml\u0026#34;]\n suffixes = [\u0026#34;atom\u0026#34;, \u0026#34;atom.xml\u0026#34;] # You can remove the \u0026#34;atom.xml\u0026#34; if you want\n\n # Redefining RSS media type for the additional suffix\n [mediaTypes.\u0026#34;application/rss+xml\u0026#34;]\n suffixes = [\u0026#34;rss\u0026#34;, \u0026#34;rss.xml\u0026#34;] # You can remove the \u0026#34;rss.xml\u0026#34; if you want\n\n\n\n# Including all of the feed output formats in the build\n[outputFormats]\n [outputFormats.Rss]\n mediaType = \u0026#34;application/rss+xml\u0026#34;\n baseName = \u0026#34;feed\u0026#34;\n\n [outputFormats.Atom]\n mediaType = \u0026#34;application/atom+xml\u0026#34;\n baseName = \u0026#34;feed\u0026#34;\n\n [outputFormats.Json]\n mediaType = \u0026#34;application/json\u0026#34;\n baseName = \u0026#34;feed\u0026#34;\n\n\n# Indicating what output formats shall be included\n# for the following kinds\n[outputs]\n # .Site.BaseURL/index.* is available\n home = [\u0026#34;HTML\u0026#34;, \u0026#34;JSON\u0026#34;, \u0026#34;RSS\u0026#34;, \u0026#34;ATOM\u0026#34;]\n\n # .Site.BaseURL/$section/index.* is available\n section = [\u0026#34;HTML\u0026#34;, \u0026#34;JSON\u0026#34;, \u0026#34;RSS\u0026#34;, \u0026#34;ATOM\u0026#34;]\u003c/code\u003e\u003c/pre\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n","date_modified":"2019-09-04T17:22:44+08:00","date_published":"2019-09-04T17:22:44+08:00","id":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/rss-atom-and-json-feed-support/","summary":"\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eAng Hugo theme na ito ay mayroon mga templates para sa RSS, Atom, and JSON feeds.\nIto ay nakatutulong para sa madaling pag-publish ng iyong mga gawa.\nAng mga output ng mga templates ay napatunayan laban sa mga validator na may wastong marka.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eIto ang mga sanggunian ng ginamit upang maisagawa ang mga templates.\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv class=\"ulist\"\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ca href=\"https://tools.ietf.org/html/rfc4287\"\u003eAtom 1.0 - IETF RFC4287\u003c/a\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ca href=\"https://jsonfeed.org/version/1\"\u003eJSON Feed version 1 specifications\u003c/a\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ca href=\"https://cyber.harvard.edu/rss/rss.html\"\u003eRSS 2.0 specifications\u003c/a\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003eNaka-activate ang mga web feeds at maaaring mo makita ang mga iyon sa sumusunod na weblinks:\u003c/p\u003e\n\u003c/div\u003e","tags":["this is a test tag","tag2"],"title":"Supporta para sa RSS, Atom, at JSON feeds","url":"https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/rss-atom-and-json-feed-support/"}]} diff --git a/tl/articles/feed.rss b/tl/articles/feed.rss index 8653b96..c5dccfe 100644 --- a/tl/articles/feed.rss +++ b/tl/articles/feed.rss @@ -4,7 +4,7 @@ Articles on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/ Recent content in Articles on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:28:27 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/articles/hidden-post-test/index.html b/tl/articles/hidden-post-test/index.html index 10bdcad..5e0fde5 100644 --- a/tl/articles/hidden-post-test/index.html +++ b/tl/articles/hidden-post-test/index.html @@ -14,7 +14,7 @@ - + @@ -29,12 +29,12 @@ Isang test ito para sa hidden post feature ng Hugo Contentful. " /> - - @@ -45,7 +45,7 @@ Isang test ito para sa hidden post feature ng Hugo Contentful."> - diff --git a/tl/articles/index.html b/tl/articles/index.html index f6f8397..3e9a160 100644 --- a/tl/articles/index.html +++ b/tl/articles/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/articles/rss-atom-and-json-feed-support/index.html b/tl/articles/rss-atom-and-json-feed-support/index.html index 78c67b3..d3f5690 100644 --- a/tl/articles/rss-atom-and-json-feed-support/index.html +++ b/tl/articles/rss-atom-and-json-feed-support/index.html @@ -14,7 +14,7 @@ - + @@ -46,7 +46,7 @@ Naka-activate ang mga web feeds at maaaring mo makita ang mga iyon sa sumusunod " /> - - - diff --git a/tl/categories/category1/index.html b/tl/categories/category1/index.html index 8069c71..349d5ea 100644 --- a/tl/categories/category1/index.html +++ b/tl/categories/category1/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/categories/feed.rss b/tl/categories/feed.rss index af38edd..a929517 100644 --- a/tl/categories/feed.rss +++ b/tl/categories/feed.rss @@ -4,7 +4,7 @@ Categories on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/categories/ Recent content in Categories on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:28:27 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/categories/guide/feed.rss b/tl/categories/guide/feed.rss index 90057da..6291041 100644 --- a/tl/categories/guide/feed.rss +++ b/tl/categories/guide/feed.rss @@ -4,7 +4,7 @@ Guide on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/categories/guide/ Recent content in Guide on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Wed, 04 Sep 2019 17:22:44 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/categories/guide/index.html b/tl/categories/guide/index.html index 281414d..12a4172 100644 --- a/tl/categories/guide/index.html +++ b/tl/categories/guide/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/categories/index.html b/tl/categories/index.html index 28d4c73..d328d75 100644 --- a/tl/categories/index.html +++ b/tl/categories/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/feed.atom b/tl/feed.atom index 3ec10df..29d7020 100644 --- a/tl/feed.atom +++ b/tl/feed.atom @@ -3,13 +3,9 @@ More Contentful © 2024 - Hugo + Hugo 2020-05-12T21:28:27+08:00 - https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png - - John Doe - johndoe@example.com - + https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/https://foo-dogsquared.github.io/hugo-theme-more-contentful/icon.png https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/articles/hidden-post-test/ Isang hidden post test diff --git a/tl/feed.json b/tl/feed.json index c5db64f..22f7a86 100644 --- a/tl/feed.json +++ b/tl/feed.json @@ -4,7 +4,7 @@ "home_page_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/", "feed_url": "https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/feed.json", "description": "Recent content on More Contentful", - "authors":[{"name":"John Doe"}], + "authors":[], "items": diff --git a/tl/feed.rss b/tl/feed.rss index 938aa66..bfd8b45 100644 --- a/tl/feed.rss +++ b/tl/feed.rss @@ -4,7 +4,7 @@ More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/ Recent content on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:28:27 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/index.html b/tl/index.html index 67605a3..3ebaea8 100644 --- a/tl/index.html +++ b/tl/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/tags/feed.rss b/tl/tags/feed.rss index 430038e..0527375 100644 --- a/tl/tags/feed.rss +++ b/tl/tags/feed.rss @@ -4,7 +4,7 @@ Tags on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/tags/ Recent content in Tags on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:28:27 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/tags/index.html b/tl/tags/index.html index e5d2761..5122892 100644 --- a/tl/tags/index.html +++ b/tl/tags/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/tags/tag1/feed.rss b/tl/tags/tag1/feed.rss index 65fd351..9acf0e4 100644 --- a/tl/tags/tag1/feed.rss +++ b/tl/tags/tag1/feed.rss @@ -4,7 +4,7 @@ Tag1 on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/tags/tag1/ Recent content in Tag1 on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:28:27 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/tags/tag1/index.html b/tl/tags/tag1/index.html index f12f777..1712c92 100644 --- a/tl/tags/tag1/index.html +++ b/tl/tags/tag1/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/tags/tag2/feed.rss b/tl/tags/tag2/feed.rss index eef864f..73f74fb 100644 --- a/tl/tags/tag2/feed.rss +++ b/tl/tags/tag2/feed.rss @@ -4,7 +4,7 @@ Tag2 on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/tags/tag2/ Recent content in Tag2 on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Tue, 12 May 2020 21:28:27 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/tags/tag2/index.html b/tl/tags/tag2/index.html index 35bc637..aec4750 100644 --- a/tl/tags/tag2/index.html +++ b/tl/tags/tag2/index.html @@ -14,7 +14,7 @@ - + diff --git a/tl/tags/this-is-a-test-tag/feed.rss b/tl/tags/this-is-a-test-tag/feed.rss index cde548e..d63374c 100644 --- a/tl/tags/this-is-a-test-tag/feed.rss +++ b/tl/tags/this-is-a-test-tag/feed.rss @@ -4,7 +4,7 @@ This Is a Test Tag on More Contentful https://foo-dogsquared.github.io/hugo-theme-more-contentful/tl/tags/this-is-a-test-tag/ Recent content in This Is a Test Tag on More Contentful - Hugo v0.135.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful + Hugo v0.138.0 -- gohugo.iotl© 2024 to the author(s) behind More Contentful Wed, 04 Sep 2019 17:22:44 +0800 https://www.rssboard.org/rss-2-0-1 diff --git a/tl/tags/this-is-a-test-tag/index.html b/tl/tags/this-is-a-test-tag/index.html index bd26a72..ca5a742 100644 --- a/tl/tags/this-is-a-test-tag/index.html +++ b/tl/tags/this-is-a-test-tag/index.html @@ -14,7 +14,7 @@ - +