├── .cursorindexingignore ├── .editorconfig ├── .github ├── CLA.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── SUPPORT.md ├── dependabot.yml ├── labeler.yml ├── media │ ├── hero.png │ ├── studio │ │ ├── slide-1.webp │ │ ├── slide-2.webp │ │ └── slide-3.webp │ ├── templates.webp │ └── zh-hero.png └── workflows │ ├── ci-build-starters-matrix.yml │ ├── ci-lint.yml │ ├── ci-pr-labeler.yml │ ├── codeql.yml │ ├── community-welcome.yml │ ├── maintenance-stale.yml │ ├── release-hugoblox-modules.yml │ ├── release-package-splitter.yml │ └── security-codeql.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintignore ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── README.zh.md ├── biome.json ├── hugo-blox-builder.code-workspace ├── modules ├── blox-analytics │ ├── README.md │ ├── go.mod │ ├── hugo.yaml │ └── layouts │ │ └── _partials │ │ └── blox-analytics │ │ ├── index.html │ │ ├── services │ │ ├── baidu_tongji.html │ │ ├── fathom.html │ │ ├── google_analytics.html │ │ ├── google_tag_manager.html │ │ ├── index.html │ │ ├── microsoft_clarity.html │ │ ├── pirsch.html │ │ └── plausible.html │ │ └── verification.html ├── blox-plugin-decap-cms │ ├── README.md │ ├── config.yaml │ ├── data │ │ └── decap_cms_config.yaml │ ├── functions │ │ ├── generate.html │ │ └── parse.html │ ├── go.mod │ └── templates │ │ ├── single.decap_cms_config.yml │ │ └── single.html ├── blox-plugin-netlify │ ├── README.md │ ├── config.yaml │ ├── go.mod │ └── src │ │ └── layouts │ │ ├── index.headers │ │ └── index.redirects ├── blox-plugin-reveal │ ├── README.md │ ├── assets │ │ ├── css │ │ │ └── libs │ │ │ │ └── chroma │ │ │ │ ├── dracula.css │ │ │ │ ├── github-dark.css │ │ │ │ └── github-light.css │ │ └── js │ │ │ └── hugoblox-slides.js │ ├── config.yaml │ ├── go.mod │ └── layouts │ │ ├── _partials │ │ └── slides.html │ │ ├── _shortcodes │ │ ├── fragment.html │ │ ├── slide.html │ │ └── speaker_note.html │ │ └── slides │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html └── blox-tailwind │ ├── .npmrc │ ├── README.md │ ├── archetypes │ ├── faq.md │ └── questions.md │ ├── assets │ ├── css │ │ ├── README.md │ │ ├── blox │ │ │ ├── all.css │ │ │ ├── biography.css │ │ │ ├── navbar.css │ │ │ └── skills.css │ │ ├── chroma.css │ │ ├── color-utilities.css │ │ ├── components │ │ │ ├── all.css │ │ │ ├── author-notes.css │ │ │ ├── cards.css │ │ │ ├── charts.css │ │ │ ├── copy.css │ │ │ ├── cover.css │ │ │ ├── glassmorphism.css │ │ │ ├── math.css │ │ │ ├── notebook.css │ │ │ ├── page.css │ │ │ ├── sidebar-left.css │ │ │ ├── steps.css │ │ │ └── task-list.css │ │ ├── config │ │ │ ├── safelist.css │ │ │ ├── tailwind.css │ │ │ └── theme.css │ │ ├── framework │ │ │ ├── base.css │ │ │ └── components.css │ │ ├── hb-search.css │ │ ├── layout-utilities.css │ │ ├── libs │ │ │ └── chroma │ │ │ │ ├── dark.css │ │ │ │ └── light.css │ │ ├── main.css │ │ ├── themes │ │ │ ├── amber.css │ │ │ ├── blue.css │ │ │ ├── cyan.css │ │ │ ├── emerald.css │ │ │ ├── fuchsia.css │ │ │ ├── green.css │ │ │ ├── indigo.css │ │ │ ├── lime.css │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ ├── rose.css │ │ │ ├── sky.css │ │ │ ├── slate.css │ │ │ ├── stone.css │ │ │ ├── teal.css │ │ │ ├── violet.css │ │ │ ├── yellow.css │ │ │ └── zinc.css │ │ └── views │ │ │ ├── all.css │ │ │ └── attachments.css │ ├── dist │ │ ├── font │ │ │ ├── Inter.var.woff2 │ │ │ └── RobotoSlab-VariableFont_wght.ttf │ │ ├── lib │ │ │ ├── alpinejs │ │ │ │ └── cdn.min.js │ │ │ ├── katex │ │ │ │ ├── auto-render.min.js │ │ │ │ ├── fonts │ │ │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ │ │ └── KaTeX_Typewriter-Regular.woff2 │ │ │ │ ├── katex.min.css │ │ │ │ └── katex.min.js │ │ │ ├── markmap │ │ │ │ └── index.js │ │ │ ├── mermaid │ │ │ │ └── mermaid.min.js │ │ │ ├── plotly │ │ │ │ └── plotly.min.js │ │ │ ├── preact │ │ │ │ ├── hooks.min.js │ │ │ │ ├── preact.min.js │ │ │ │ └── preact.min.js.map │ │ │ └── vendor-libs.mjs │ │ └── pagefind │ │ │ ├── pagefind-ui.css │ │ │ └── pagefind-ui.js │ ├── hugo_stats.json │ ├── js │ │ ├── hb-citation.js │ │ ├── hb-clipboard.js │ │ ├── hb-code-copy.js │ │ ├── hb-head.js │ │ ├── hb-i18n.js │ │ ├── hb-init.js │ │ ├── hb-mermaid-config.js │ │ ├── hb-nav.js │ │ ├── hb-notifier.js │ │ ├── hb-search.js │ │ ├── hb-sidebar.js │ │ ├── hb-theme.js │ │ ├── katex-config.js │ │ └── vendor-libs.js │ └── media │ │ ├── icon.png │ │ ├── icons │ │ └── brands │ │ │ ├── coursera.svg │ │ │ ├── datacamp.svg │ │ │ └── edx.svg │ │ └── textures │ │ └── noise-pattern.svg │ ├── blox │ ├── collection │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── contact-info │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── cta-button-list │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── cta-card │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── cta-image-paragraph │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── faq │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── features │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── hero │ │ ├── README.md │ │ ├── block.html │ │ ├── client.jsx │ │ ├── component.jsx │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── knowledge-categories │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── logos │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── markdown │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── research-areas │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── resume-awards │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── resume-biography-3 │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── resume-biography │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── resume-experience │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── resume-languages │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── resume-skills │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── search-hero │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── shared │ │ ├── js │ │ │ └── components │ │ │ │ └── Icon.jsx │ │ └── schemas │ │ │ ├── README.md │ │ │ ├── base-block.json │ │ │ ├── landing-page.json │ │ │ └── sections.json │ ├── stats │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ ├── team-showcase │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── testimonials │ │ ├── README.md │ │ ├── block.html │ │ ├── manifest.json │ │ ├── preview.svg │ │ └── schema.json │ └── trending-questions │ │ ├── block.html │ │ ├── manifest.json │ │ └── schema.json │ ├── data │ ├── address_formats.toml │ ├── blox_aliases.yaml │ ├── hugoblox.yaml │ ├── icons │ │ ├── academicons.json │ │ ├── brands.yaml │ │ ├── devicon.json │ │ ├── hb.yaml │ │ └── hero.json │ ├── languages.yaml │ ├── link_types.yaml │ ├── page_sharer.yaml │ └── themes │ │ ├── coffee.yaml │ │ ├── contrast.yaml │ │ ├── cupcake.yaml │ │ ├── default.yaml │ │ ├── dracula.yaml │ │ ├── marine.yaml │ │ ├── matcha.yaml │ │ ├── minimal.yaml │ │ ├── retro.yaml │ │ ├── solar.yaml │ │ └── synthwave.yaml │ ├── go.mod │ ├── hugo.yaml │ ├── i18n │ ├── ar.yaml │ ├── bn.yaml │ ├── ca.yaml │ ├── cs.yaml │ ├── da.yaml │ ├── de.yaml │ ├── el.yaml │ ├── en.yaml │ ├── es.yaml │ ├── et.yaml │ ├── eu.yaml │ ├── fa.yaml │ ├── fi.yaml │ ├── fr.yaml │ ├── he.yaml │ ├── hr.yaml │ ├── ht.yaml │ ├── hu.yaml │ ├── id.yaml │ ├── it.yaml │ ├── ja.yaml │ ├── km.yaml │ ├── ko.yaml │ ├── lt.yaml │ ├── lv.yaml │ ├── mg.yaml │ ├── ms-Arab.yaml │ ├── ms.yaml │ ├── nb.yaml │ ├── nl.yaml │ ├── pl.yaml │ ├── pt.yaml │ ├── ro.yaml │ ├── ru.yaml │ ├── so.yaml │ ├── sv.yaml │ ├── tr.yaml │ ├── uk.yaml │ ├── vi.yaml │ ├── zh-Hant.yaml │ └── zh.yaml │ ├── images │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _markup │ │ ├── render-blockquote.html │ │ ├── render-codeblock-markmap.html │ │ ├── render-codeblock-mermaid.html │ │ ├── render-image.html │ │ ├── render-link.backlinks.json │ │ └── render-link.html │ ├── _partials │ │ ├── blox │ │ │ ├── hero │ │ │ │ └── wrapper.html │ │ │ └── preact-wrapper.html │ │ ├── comments.html │ │ ├── comments │ │ │ ├── commento.html │ │ │ ├── disqus.html │ │ │ └── giscus.html │ │ ├── components │ │ │ ├── backlinks.html │ │ │ ├── breadcrumb.html │ │ │ ├── cover.html │ │ │ ├── feedback.html │ │ │ ├── footers │ │ │ │ └── minimal.html │ │ │ ├── headers │ │ │ │ ├── floating-theme-toggler.html │ │ │ │ ├── navbar-simple.html │ │ │ │ └── navbar.html │ │ │ ├── language-chooser.html │ │ │ ├── last-edited.html │ │ │ ├── next-in-series.html │ │ │ ├── page_sharer.html │ │ │ ├── paginator.html │ │ │ ├── search-modal.html │ │ │ ├── sidebar.html │ │ │ └── toc.html │ │ ├── css.html │ │ ├── docs_layout.html │ │ ├── functions │ │ │ ├── build_links.html │ │ │ ├── deep_merge.html │ │ │ ├── demo_theme_styles.html │ │ │ ├── embed │ │ │ │ ├── github.html │ │ │ │ ├── hbx_content_section.html │ │ │ │ ├── hbx_platform_icon.html │ │ │ │ ├── hbx_title_section.html │ │ │ │ └── huggingface.html │ │ │ ├── generate_color_scale.html │ │ │ ├── get-block-scripts.html │ │ │ ├── get-build-id.html │ │ │ ├── get_address.html │ │ │ ├── get_author_name.html │ │ │ ├── get_branding.html │ │ │ ├── get_cover_image.html │ │ │ ├── get_event_dates.html │ │ │ ├── get_featured_image.html │ │ │ ├── get_hook.html │ │ │ ├── get_icon.html │ │ │ ├── get_icon_data.html │ │ │ ├── get_logo.html │ │ │ ├── get_logo_url.html │ │ │ ├── get_page_title.html │ │ │ ├── get_site_icon.html │ │ │ ├── get_sort_by_parameter.html │ │ │ ├── get_summary.html │ │ │ ├── get_theme_config.html │ │ │ ├── has_attachments.html │ │ │ ├── hbx_verify.html │ │ │ ├── load_theme_pack.html │ │ │ ├── logger.html │ │ │ ├── notebook │ │ │ │ └── render.html │ │ │ ├── parse_block_v2.html │ │ │ ├── parse_block_v3.html │ │ │ ├── process_responsive_image.html │ │ │ ├── render_callout.html │ │ │ ├── render_view.html │ │ │ ├── theme_generator.html │ │ │ ├── theme_variables.html │ │ │ └── uid.html │ │ ├── hbx │ │ │ ├── resolve-block-param.html │ │ │ ├── resolve.html │ │ │ └── sections.html │ │ ├── hooks │ │ │ └── body-end │ │ │ │ ├── hbx-debug-export.html │ │ │ │ └── hbx-debug-hud.html │ │ ├── init.html │ │ ├── jsonld │ │ │ ├── article.html │ │ │ ├── breadcrumbs.html │ │ │ ├── business.html │ │ │ ├── collectionpage.html │ │ │ ├── event.html │ │ │ ├── faqpage.html │ │ │ ├── main.html │ │ │ ├── qapage.html │ │ │ ├── webpage.html │ │ │ └── website.html │ │ ├── landing_page.html │ │ ├── libraries.html │ │ ├── notification-container.html │ │ ├── page_author.html │ │ ├── page_author_card.html │ │ ├── page_edit.html │ │ ├── page_footer.html │ │ ├── page_links.html │ │ ├── page_links_div.html │ │ ├── page_metadata_authors.html │ │ ├── page_related.html │ │ ├── site_footer.html │ │ ├── site_footer_license.html │ │ ├── site_head.html │ │ ├── social_links.html │ │ ├── tags.html │ │ ├── tailwind_sources.html │ │ └── views │ │ │ ├── article-grid--end.html │ │ │ ├── article-grid--start.html │ │ │ ├── article-grid.html │ │ │ ├── card--end.html │ │ │ ├── card--start.html │ │ │ ├── card.html │ │ │ ├── citation--end.html │ │ │ ├── citation--start.html │ │ │ ├── citation.html │ │ │ ├── date-title-summary--end.html │ │ │ ├── date-title-summary--start.html │ │ │ └── date-title-summary.html │ ├── _shortcodes │ │ ├── audio.html │ │ ├── bilibili.html │ │ ├── button.html │ │ ├── callout.html │ │ ├── card.html │ │ ├── cards.html │ │ ├── chart.html │ │ ├── cite.html │ │ ├── embed.html │ │ ├── icon.html │ │ ├── include.html │ │ ├── math.html │ │ ├── mention.html │ │ ├── notebook.html │ │ ├── spoiler.html │ │ ├── steps.html │ │ ├── table.html │ │ ├── toc.html │ │ └── video.html │ ├── baseof.html │ ├── docs │ │ ├── list.html │ │ └── single.html │ ├── faq │ │ ├── list.html │ │ └── single.html │ ├── home.backlinks.json │ ├── home.html │ ├── index.llm.txt │ ├── index.webmanifest │ ├── landing │ │ ├── list.html │ │ └── single.html │ ├── list.html │ ├── questions │ │ ├── list.html │ │ └── single.html │ ├── robots.txt │ ├── rss.xml │ ├── single.html │ ├── sitemap.xml │ ├── taxonomy.html │ └── terms.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ └── theme.toml ├── package.json ├── pnpm-lock.yaml ├── poetry.lock ├── pyproject.toml ├── scripts ├── list_language_packs.py ├── release_modules.py ├── rm-hugo-cache.sh ├── sync_i18n.py ├── test_release_modules.py ├── view-starter-dev.sh ├── view-starter-prod.sh └── view-test.sh ├── templates ├── academic-cv │ ├── .devcontainer │ │ └── devcontainer.json │ ├── .github │ │ ├── FUNDING.yml │ │ ├── preview.webp │ │ └── workflows │ │ │ ├── deploy.yml │ │ │ ├── import-publications.yml │ │ │ └── updater-wip.yml │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets │ │ └── media │ │ │ ├── icons │ │ │ └── custom │ │ │ │ └── .gitkeep │ │ │ └── stacked-peaks.svg │ ├── config │ │ └── _default │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ ├── content │ │ ├── _index.md │ │ ├── authors │ │ │ ├── _index.md │ │ │ └── admin │ │ │ │ ├── _index.md │ │ │ │ └── avatar.png │ │ ├── blog │ │ │ ├── _index.md │ │ │ ├── data-visualization │ │ │ │ ├── featured.jpg │ │ │ │ ├── index.md │ │ │ │ ├── line-chart.json │ │ │ │ └── results.csv │ │ │ ├── get-started │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── notebook-onboarding │ │ │ │ ├── cover.jpg │ │ │ │ ├── featured.jpg │ │ │ │ ├── hugoblox-onboarding.ipynb │ │ │ │ └── index.md │ │ │ ├── project-management │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── second-brain │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ └── teach-courses │ │ │ │ ├── ambient-piano.mp3 │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── courses │ │ │ ├── _index.md │ │ │ └── hugo-blox │ │ │ │ ├── _index.md │ │ │ │ ├── featured.jpg │ │ │ │ ├── getting-started.md │ │ │ │ ├── guide │ │ │ │ ├── _index.md │ │ │ │ ├── configuration.md │ │ │ │ ├── formatting │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── ambient-piano.mp3 │ │ │ │ │ ├── button.md │ │ │ │ │ ├── callout.md │ │ │ │ │ ├── cards.md │ │ │ │ │ ├── media.md │ │ │ │ │ ├── steps.md │ │ │ │ │ └── toggle.md │ │ │ │ └── project-structure.md │ │ │ │ └── reference │ │ │ │ ├── _index.md │ │ │ │ ├── customization.md │ │ │ │ └── i18n.md │ │ ├── events │ │ │ ├── _index.md │ │ │ └── example │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── experience.md │ │ ├── projects │ │ │ ├── _index.md │ │ │ ├── pandas │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── pytorch │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── scikit │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ └── publications │ │ │ ├── _index.md │ │ │ ├── conference-paper │ │ │ ├── cite.bib │ │ │ ├── conference-paper.pdf │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ │ ├── journal-article │ │ │ ├── cite.bib │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ │ └── preprint │ │ │ ├── featured.jpg │ │ │ └── index.md │ ├── go.mod │ ├── hugoblox.yaml │ ├── layouts │ │ └── _partials │ │ │ └── hooks │ │ │ └── head-end │ │ │ └── github-button.html │ ├── netlify.toml │ ├── package.json │ ├── pnpm-lock.yaml │ └── static │ │ └── uploads │ │ └── resume.pdf ├── blog │ ├── .github │ │ ├── FUNDING.yml │ │ ├── preview.png │ │ └── workflows │ │ │ ├── deploy.yml │ │ │ └── import-notebooks.yml │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets │ │ └── media │ │ │ └── icons │ │ │ └── custom │ │ │ └── .gitkeep │ ├── config │ │ └── _default │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ ├── content │ │ ├── _index.md │ │ ├── authors │ │ │ ├── _index.md │ │ │ └── admin │ │ │ │ ├── _index.md │ │ │ │ └── avatar.jpg │ │ ├── blog │ │ │ ├── _index.md │ │ │ ├── data-visualization │ │ │ │ ├── featured.jpg │ │ │ │ ├── index.md │ │ │ │ ├── line-chart.json │ │ │ │ └── results.csv │ │ │ ├── get-started │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── project-management │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── second-brain │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ └── teach-courses │ │ │ │ ├── ambient-piano.mp3 │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── tags │ │ │ └── _index.md │ │ └── uses.md │ ├── go.mod │ ├── hugo-blox │ │ └── blox │ │ │ ├── all-access │ │ │ └── README.md │ │ │ └── community │ │ │ └── README.md │ ├── hugoblox.yaml │ ├── netlify.toml │ ├── notebooks │ │ └── blog-with-jupyter.ipynb │ ├── package.json │ ├── pnpm-lock.yaml │ └── static │ │ └── uploads │ │ └── resume.pdf ├── documentation │ ├── .editorconfig │ ├── .github │ │ ├── FUNDING.yml │ │ ├── preview.png │ │ └── workflows │ │ │ └── deploy.yml │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets │ │ └── media │ │ │ ├── icon.png │ │ │ ├── icons │ │ │ └── custom │ │ │ │ └── .gitkeep │ │ │ └── logo.svg │ ├── config │ │ └── _default │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ ├── content │ │ ├── _index.md │ │ ├── authors │ │ │ ├── _index.md │ │ │ └── admin │ │ │ │ ├── _index.md │ │ │ │ └── avatar.jpg │ │ ├── blog │ │ │ ├── _index.md │ │ │ ├── v1.0.0 │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ └── v2.0.0 │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── community │ │ │ └── index.md │ │ ├── docs │ │ │ ├── _index.md │ │ │ ├── getting-started.md │ │ │ ├── guide │ │ │ │ ├── _index.md │ │ │ │ ├── configuration.md │ │ │ │ ├── project-structure.md │ │ │ │ └── shortcodes │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── button.md │ │ │ │ │ ├── callout.md │ │ │ │ │ ├── cards.md │ │ │ │ │ ├── steps.md │ │ │ │ │ └── toggle.md │ │ │ └── reference │ │ │ │ ├── _index.md │ │ │ │ ├── customization.md │ │ │ │ └── i18n.md │ │ └── showcase │ │ │ ├── _index.md │ │ │ └── nvidia │ │ │ ├── featured.webp │ │ │ └── index.md │ ├── go.mod │ ├── hugo-blox │ │ └── blox │ │ │ ├── all-access │ │ │ └── README.md │ │ │ └── community │ │ │ └── README.md │ ├── hugoblox.yaml │ ├── images │ │ ├── screenshot.png │ │ └── tn.png │ ├── netlify.toml │ ├── package.json │ ├── pnpm-lock.yaml │ ├── static │ │ └── uploads │ │ │ └── .gitkeep │ └── theme.toml ├── landing-page │ ├── .github │ │ ├── FUNDING.yml │ │ ├── preview.webp │ │ └── workflows │ │ │ └── deploy.yml │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets │ │ └── media │ │ │ ├── bg-triangles.svg │ │ │ ├── build-website.png │ │ │ ├── coffee.jpg │ │ │ ├── icons │ │ │ └── custom │ │ │ │ └── .gitkeep │ │ │ ├── logo.svg │ │ │ └── testimonial-1.jpg │ ├── config │ │ └── _default │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ ├── content │ │ ├── _index.md │ │ ├── authors │ │ │ ├── _index.md │ │ │ └── admin │ │ │ │ ├── _index.md │ │ │ │ └── avatar.jpg │ │ ├── blog │ │ │ ├── _index.md │ │ │ ├── data-visualization │ │ │ │ ├── featured.jpg │ │ │ │ ├── index.md │ │ │ │ ├── line-chart.json │ │ │ │ └── results.csv │ │ │ ├── get-started │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── project-management │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── second-brain │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ └── teach-courses │ │ │ │ ├── ambient-piano.mp3 │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── privacy.md │ │ └── terms.md │ ├── go.mod │ ├── hugo-blox │ │ └── blox │ │ │ ├── all-access │ │ │ └── README.md │ │ │ └── community │ │ │ └── README.md │ ├── hugoblox.yaml │ ├── images │ │ ├── screenshot.png │ │ └── tn.png │ ├── netlify.toml │ ├── package.json │ ├── pnpm-lock.yaml │ └── theme.toml ├── link-in-bio │ ├── .github │ │ ├── FUNDING.yml │ │ ├── preview.webp │ │ └── workflows │ │ │ └── deploy.yml │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets │ │ └── media │ │ │ ├── bg-hue.svg │ │ │ └── icons │ │ │ └── custom │ │ │ └── .gitkeep │ ├── config │ │ └── _default │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ ├── content │ │ ├── _index.md │ │ └── authors │ │ │ ├── _index.md │ │ │ └── admin │ │ │ ├── _index.md │ │ │ └── avatar.png │ ├── go.mod │ ├── hugo-blox │ │ └── blox │ │ │ ├── all-access │ │ │ └── README.md │ │ │ └── community │ │ │ └── README.md │ ├── hugoblox.yaml │ ├── layouts │ │ └── _partials │ │ │ └── hooks │ │ │ └── body-end │ │ │ └── change-background-color.html │ ├── netlify.toml │ ├── package.json │ ├── pnpm-lock.yaml │ └── static │ │ └── uploads │ │ └── resume.pdf └── resume │ ├── .github │ ├── FUNDING.yml │ ├── preview.png │ └── workflows │ │ └── deploy.yml │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets │ └── media │ │ ├── icons │ │ └── custom │ │ │ └── .gitkeep │ │ └── kalen-emsley-Bkci_8qcdvQ-unsplash.jpg │ ├── config │ └── _default │ │ ├── hugo.yaml │ │ ├── languages.yaml │ │ ├── menus.yaml │ │ ├── module.yaml │ │ └── params.yaml │ ├── content │ ├── _index.md │ └── authors │ │ ├── _index.md │ │ └── admin │ │ ├── _index.md │ │ └── avatar.jpg │ ├── go.mod │ ├── hugo-blox │ └── blox │ │ ├── all-access │ │ └── README.md │ │ └── community │ │ └── README.md │ ├── hugoblox.yaml │ ├── netlify.toml │ ├── package.json │ ├── pnpm-lock.yaml │ └── static │ └── uploads │ └── resume.pdf ├── test ├── assets │ └── media │ │ └── cake.svg ├── config.yaml ├── content │ ├── _index.md │ └── linked │ │ └── index.md ├── data │ ├── blocks │ │ ├── features_basic.yaml │ │ └── hero_basic.yaml │ └── pages │ │ └── home.yaml ├── go.mod ├── package.json └── pnpm-lock.yaml └── vite.config.js /.cursorindexingignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.cursorindexingignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/CLA.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: gcushen 2 | custom: https://hugoblox.com/sponsor/ 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/media/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/media/hero.png -------------------------------------------------------------------------------- /.github/media/studio/slide-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/media/studio/slide-1.webp -------------------------------------------------------------------------------- /.github/media/studio/slide-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/media/studio/slide-2.webp -------------------------------------------------------------------------------- /.github/media/studio/slide-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/media/studio/slide-3.webp -------------------------------------------------------------------------------- /.github/media/templates.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/media/templates.webp -------------------------------------------------------------------------------- /.github/media/zh-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/media/zh-hero.png -------------------------------------------------------------------------------- /.github/workflows/ci-build-starters-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/ci-build-starters-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/ci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/ci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ci-pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/ci-pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/community-welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/community-welcome.yml -------------------------------------------------------------------------------- /.github/workflows/maintenance-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/maintenance-stale.yml -------------------------------------------------------------------------------- /.github/workflows/release-hugoblox-modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/release-hugoblox-modules.yml -------------------------------------------------------------------------------- /.github/workflows/release-package-splitter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/release-package-splitter.yml -------------------------------------------------------------------------------- /.github/workflows/security-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.github/workflows/security-codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/.stylelintignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/README.zh.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/biome.json -------------------------------------------------------------------------------- /hugo-blox-builder.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/hugo-blox-builder.code-workspace -------------------------------------------------------------------------------- /modules/blox-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-analytics/README.md -------------------------------------------------------------------------------- /modules/blox-analytics/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-analytics/go.mod -------------------------------------------------------------------------------- /modules/blox-analytics/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-analytics/hugo.yaml -------------------------------------------------------------------------------- /modules/blox-analytics/layouts/_partials/blox-analytics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-analytics/layouts/_partials/blox-analytics/index.html -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/README.md -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/config.yaml -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/data/decap_cms_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/data/decap_cms_config.yaml -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/functions/generate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/functions/generate.html -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/functions/parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/functions/parse.html -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/go.mod -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/templates/single.decap_cms_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/templates/single.decap_cms_config.yml -------------------------------------------------------------------------------- /modules/blox-plugin-decap-cms/templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-decap-cms/templates/single.html -------------------------------------------------------------------------------- /modules/blox-plugin-netlify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-netlify/README.md -------------------------------------------------------------------------------- /modules/blox-plugin-netlify/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-netlify/config.yaml -------------------------------------------------------------------------------- /modules/blox-plugin-netlify/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-netlify/go.mod -------------------------------------------------------------------------------- /modules/blox-plugin-netlify/src/layouts/index.headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-netlify/src/layouts/index.headers -------------------------------------------------------------------------------- /modules/blox-plugin-netlify/src/layouts/index.redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-netlify/src/layouts/index.redirects -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/README.md -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/assets/css/libs/chroma/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/assets/css/libs/chroma/dracula.css -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/assets/css/libs/chroma/github-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/assets/css/libs/chroma/github-dark.css -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/assets/css/libs/chroma/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/assets/css/libs/chroma/github-light.css -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/assets/js/hugoblox-slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/assets/js/hugoblox-slides.js -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/config.yaml -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/go.mod -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/_partials/slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/layouts/_partials/slides.html -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/_shortcodes/fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/layouts/_shortcodes/fragment.html -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/_shortcodes/slide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/layouts/_shortcodes/slide.html -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/_shortcodes/speaker_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/layouts/_shortcodes/speaker_note.html -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/slides/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/layouts/slides/baseof.html -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/slides/list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/blox-plugin-reveal/layouts/slides/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-plugin-reveal/layouts/slides/single.html -------------------------------------------------------------------------------- /modules/blox-tailwind/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/.npmrc -------------------------------------------------------------------------------- /modules/blox-tailwind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/archetypes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/archetypes/faq.md -------------------------------------------------------------------------------- /modules/blox-tailwind/archetypes/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/archetypes/questions.md -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/blox/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/blox/all.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/blox/biography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/blox/biography.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/blox/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/blox/navbar.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/blox/skills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/blox/skills.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/chroma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/chroma.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/color-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/color-utilities.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/all.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/author-notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/author-notes.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/cards.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/charts.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/copy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/copy.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/cover.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/glassmorphism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/glassmorphism.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/math.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/math.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/notebook.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/page.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/sidebar-left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/sidebar-left.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/steps.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/components/task-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/components/task-list.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/config/safelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/config/safelist.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/config/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/config/tailwind.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/config/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/config/theme.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/framework/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/framework/base.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/framework/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/framework/components.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/hb-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/hb-search.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/layout-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/layout-utilities.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/libs/chroma/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/libs/chroma/dark.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/libs/chroma/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/libs/chroma/light.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/main.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/amber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/amber.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/blue.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/cyan.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/emerald.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/emerald.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/fuchsia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/fuchsia.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/green.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/indigo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/indigo.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/lime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/lime.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/orange.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/pink.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/purple.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/red.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/rose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/rose.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/sky.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/slate.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/stone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/stone.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/teal.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/violet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/violet.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/yellow.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/themes/zinc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/themes/zinc.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/views/all.css: -------------------------------------------------------------------------------- 1 | @import "attachments.css"; 2 | -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/css/views/attachments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/css/views/attachments.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/font/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/font/Inter.var.woff2 -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/alpinejs/cdn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/alpinejs/cdn.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/katex/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/katex/auto-render.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/katex/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/katex/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/katex/katex.min.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/katex/katex.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/markmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/markmap/index.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/mermaid/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/mermaid/mermaid.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/plotly/plotly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/plotly/plotly.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/preact/hooks.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/preact/hooks.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/preact/preact.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/preact/preact.min.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/preact/preact.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/preact/preact.min.js.map -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/lib/vendor-libs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/lib/vendor-libs.mjs -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/pagefind/pagefind-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/pagefind/pagefind-ui.css -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/dist/pagefind/pagefind-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/dist/pagefind/pagefind-ui.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/hugo_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/hugo_stats.json -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-citation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-citation.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-clipboard.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-code-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-code-copy.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-head.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-i18n.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-init.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-mermaid-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-mermaid-config.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-nav.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-notifier.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-search.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-sidebar.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/hb-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/hb-theme.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/katex-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/katex-config.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/js/vendor-libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/js/vendor-libs.js -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/media/icon.png -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/media/icons/brands/coursera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/media/icons/brands/coursera.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/media/icons/brands/datacamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/media/icons/brands/datacamp.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/media/icons/brands/edx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/media/icons/brands/edx.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/assets/media/textures/noise-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/assets/media/textures/noise-pattern.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/collection/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/collection/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/collection/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/collection/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/collection/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/collection/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/collection/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/collection/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/collection/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/contact-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/contact-info/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/contact-info/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/contact-info/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/contact-info/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/contact-info/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/contact-info/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/contact-info/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-button-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-button-list/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-button-list/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-button-list/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-button-list/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-button-list/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-button-list/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-button-list/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-button-list/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-button-list/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-card/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-card/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-card/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-card/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-card/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-card/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-card/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-card/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-card/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-image-paragraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-image-paragraph/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-image-paragraph/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-image-paragraph/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-image-paragraph/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-image-paragraph/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-image-paragraph/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-image-paragraph/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/cta-image-paragraph/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/cta-image-paragraph/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/faq/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/faq/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/faq/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/faq/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/faq/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/faq/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/faq/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/faq/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/faq/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/features/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/features/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/features/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/features/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/features/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/features/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/features/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/features/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/features/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/client.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/client.jsx -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/component.jsx -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/hero/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/hero/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/knowledge-categories/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/knowledge-categories/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/knowledge-categories/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/knowledge-categories/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/knowledge-categories/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/knowledge-categories/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/logos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/logos/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/logos/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/logos/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/logos/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/logos/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/logos/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/logos/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/markdown/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/markdown/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/markdown/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/markdown/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/markdown/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/markdown/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/markdown/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/markdown/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/markdown/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/research-areas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/research-areas/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/research-areas/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/research-areas/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/research-areas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/research-areas/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/research-areas/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/research-areas/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-awards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-awards/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-awards/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-awards/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-awards/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-awards/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-awards/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-awards/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-awards/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-awards/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography-3/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography-3/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography-3/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography-3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography-3/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography-3/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography-3/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography-3/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography-3/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-biography/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-biography/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-experience/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-experience/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-experience/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-experience/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-experience/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-experience/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-experience/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-experience/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-experience/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-experience/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-languages/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-languages/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-languages/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-languages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-languages/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-languages/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-languages/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-languages/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-languages/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-skills/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-skills/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-skills/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-skills/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-skills/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-skills/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-skills/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/resume-skills/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/resume-skills/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/search-hero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/search-hero/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/search-hero/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/search-hero/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/search-hero/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/search-hero/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/search-hero/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/search-hero/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/shared/js/components/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/shared/js/components/Icon.jsx -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/shared/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/shared/schemas/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/shared/schemas/base-block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/shared/schemas/base-block.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/shared/schemas/landing-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/shared/schemas/landing-page.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/shared/schemas/sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/shared/schemas/sections.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/stats/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/stats/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/stats/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/stats/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/stats/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/stats/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/stats/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/stats/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/stats/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/team-showcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/team-showcase/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/team-showcase/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/team-showcase/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/team-showcase/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/team-showcase/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/team-showcase/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/team-showcase/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/testimonials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/testimonials/README.md -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/testimonials/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/testimonials/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/testimonials/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/testimonials/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/testimonials/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/testimonials/preview.svg -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/testimonials/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/testimonials/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/trending-questions/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/trending-questions/block.html -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/trending-questions/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/trending-questions/manifest.json -------------------------------------------------------------------------------- /modules/blox-tailwind/blox/trending-questions/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/blox/trending-questions/schema.json -------------------------------------------------------------------------------- /modules/blox-tailwind/data/address_formats.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/address_formats.toml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/blox_aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/blox_aliases.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/hugoblox.yaml: -------------------------------------------------------------------------------- 1 | # Hugo Blox metadata 2 | 3 | version: '0.10.0' 4 | -------------------------------------------------------------------------------- /modules/blox-tailwind/data/icons/academicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/icons/academicons.json -------------------------------------------------------------------------------- /modules/blox-tailwind/data/icons/brands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/icons/brands.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/icons/devicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/icons/devicon.json -------------------------------------------------------------------------------- /modules/blox-tailwind/data/icons/hb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/icons/hb.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/icons/hero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/icons/hero.json -------------------------------------------------------------------------------- /modules/blox-tailwind/data/languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/languages.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/link_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/link_types.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/page_sharer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/page_sharer.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/coffee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/coffee.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/contrast.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/cupcake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/cupcake.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/default.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/dracula.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/dracula.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/marine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/marine.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/matcha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/matcha.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/minimal.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/retro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/retro.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/solar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/solar.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/data/themes/synthwave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/data/themes/synthwave.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/go.mod -------------------------------------------------------------------------------- /modules/blox-tailwind/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/hugo.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ar.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/bn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/bn.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ca.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/cs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/cs.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/da.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/de.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/el.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/el.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/en.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/es.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/et.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/et.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/eu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/eu.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/fa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/fa.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/fi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/fi.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/fr.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/he.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/he.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/hr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/hr.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ht.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ht.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/hu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/hu.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/id.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/it.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ja.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/km.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/km.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ko.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/lt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/lt.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/lv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/lv.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/mg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/mg.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ms-Arab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ms-Arab.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ms.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/nb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/nb.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/nl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/nl.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/pl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/pl.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/pt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/pt.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ro.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/ru.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/so.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/so.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/sv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/sv.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/tr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/tr.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/uk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/uk.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/vi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/vi.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/zh-Hant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/zh-Hant.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/i18n/zh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/i18n/zh.yaml -------------------------------------------------------------------------------- /modules/blox-tailwind/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/images/screenshot.png -------------------------------------------------------------------------------- /modules/blox-tailwind/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/images/tn.png -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/404.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_markup/render-blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_markup/render-blockquote.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_markup/render-codeblock-markmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_markup/render-codeblock-markmap.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_markup/render-codeblock-mermaid.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_markup/render-image.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_markup/render-link.backlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_markup/render-link.backlinks.json -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_markup/render-link.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/blox/hero/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/blox/hero/wrapper.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/blox/preact-wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/blox/preact-wrapper.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/comments.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/comments/commento.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/comments/commento.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/comments/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/comments/disqus.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/comments/giscus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/comments/giscus.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/backlinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/backlinks.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/breadcrumb.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/cover.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/feedback.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/headers/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/headers/navbar.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/last-edited.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/last-edited.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/next-in-series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/next-in-series.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/page_sharer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/page_sharer.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/paginator.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/search-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/search-modal.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/sidebar.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/components/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/components/toc.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/css.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/docs_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/docs_layout.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/build_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/build_links.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/deep_merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/deep_merge.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/embed/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/embed/github.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get-build-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get-build-id.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_address.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_author_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_author_name.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_branding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_branding.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_cover_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_cover_image.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_event_dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_event_dates.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_hook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_hook.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_icon.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_icon_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_icon_data.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_logo.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_logo_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_logo_url.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_page_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_page_title.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_site_icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_site_icon.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/get_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/get_summary.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/has_attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/has_attachments.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/hbx_verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/hbx_verify.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/load_theme_pack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/load_theme_pack.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/logger.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/notebook/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/notebook/render.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/render_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/render_view.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/functions/uid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/functions/uid.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/hbx/resolve-block-param.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/hbx/resolve-block-param.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/hbx/resolve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/hbx/resolve.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/hbx/sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/hbx/sections.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/init.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/article.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/breadcrumbs.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/business.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/business.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/collectionpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/collectionpage.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/event.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/faqpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/faqpage.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/main.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/qapage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/qapage.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/webpage.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/jsonld/website.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/jsonld/website.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/landing_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/landing_page.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/libraries.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/notification-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/notification-container.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_author.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_author_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_author_card.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_edit.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_footer.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_links.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_links_div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_links_div.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_metadata_authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_metadata_authors.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/page_related.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/page_related.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/site_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/site_footer.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/site_footer_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/site_footer_license.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/site_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/site_head.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/social_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/social_links.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/tags.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/tailwind_sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/tailwind_sources.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/article-grid--end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/views/article-grid--end.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/article-grid.html: -------------------------------------------------------------------------------- 1 | {{- partial "views/card.html" . -}} 2 | -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/card--end.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/card--start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/views/card--start.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/views/card.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/citation--end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/views/citation--end.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/citation--start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/views/citation--start.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_partials/views/citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_partials/views/citation.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/audio.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/bilibili.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/bilibili.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/button.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/callout.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/card.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/cards.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/chart.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/cite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/cite.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/embed.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/icon.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/include.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/math.html: -------------------------------------------------------------------------------- 1 | {{ .Inner }} 2 | -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/mention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/mention.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/notebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/notebook.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/spoiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/hugo-blox-builder/HEAD/modules/blox-tailwind/layouts/_shortcodes/spoiler.html -------------------------------------------------------------------------------- /modules/blox-tailwind/layouts/_shortcodes/steps.html: -------------------------------------------------------------------------------- 1 |