{{title}}
12 | {{#if custom_excerpt}} 13 |{{custom_excerpt}}
14 | {{/if}} 15 | {{> "feature-image"}} 16 |├── assets
├── images
│ ├── preloader.gif
│ ├── default-skin.png
│ └── default-skin.svg
├── fonts
│ ├── inter-roman.woff2
│ ├── eb-garamond-italic.woff2
│ ├── eb-garamond-roman.woff2
│ ├── jetbrains-mono-roman.woff2
│ └── jetbrains-mono-italic.woff2
├── js
│ ├── lib
│ │ ├── reframe.min.js
│ │ ├── imagesloaded.pkgd.min.js
│ │ ├── photoswipe-ui-default.min.js
│ │ └── photoswipe.min.js
│ ├── main.js
│ ├── pagination.js
│ ├── dropdown.js
│ └── lightbox.js
└── built
│ └── source.js
├── partials
├── search-toggle.hbs
├── icons
│ ├── twitter.hbs
│ ├── search.hbs
│ ├── arrow.hbs
│ ├── rss.hbs
│ ├── burger.hbs
│ ├── avatar.hbs
│ ├── close.hbs
│ ├── facebook.hbs
│ ├── fire.hbs
│ ├── youtube.hbs
│ ├── lock.hbs
│ ├── bluesky.hbs
│ ├── checkmark.hbs
│ ├── tiktok.hbs
│ ├── loader.hbs
│ ├── linkedin.hbs
│ ├── mastodon.hbs
│ ├── threads.hbs
│ └── instagram.hbs
├── email-subscription.hbs
├── typography
│ ├── fonts.hbs
│ ├── sans.hbs
│ ├── serif.hbs
│ └── mono.hbs
├── components
│ ├── featured.hbs
│ ├── header.hbs
│ ├── cta.hbs
│ ├── footer.hbs
│ ├── navigation.hbs
│ ├── header-content.hbs
│ └── post-list.hbs
├── feature-image.hbs
├── content-cta.hbs
├── lightbox.hbs
└── post-card.hbs
├── index.hbs
├── .gitignore
├── home.hbs
├── page.hbs
├── locales
├── zh.json
├── zh-CN.json
├── en.json
├── nl.json
├── uk.json
├── pt-BR.json
├── fr.json
├── sv.json
├── gd.json
├── ga.json
├── de.json
└── de-CH.json
├── tag.hbs
├── LICENSE
├── default.hbs
├── post.hbs
├── README.md
├── author.hbs
├── gulpfile.js
└── package.json
/assets/images/preloader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/images/preloader.gif
--------------------------------------------------------------------------------
/assets/fonts/inter-roman.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/fonts/inter-roman.woff2
--------------------------------------------------------------------------------
/assets/images/default-skin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/images/default-skin.png
--------------------------------------------------------------------------------
/assets/fonts/eb-garamond-italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/fonts/eb-garamond-italic.woff2
--------------------------------------------------------------------------------
/assets/fonts/eb-garamond-roman.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/fonts/eb-garamond-roman.woff2
--------------------------------------------------------------------------------
/assets/fonts/jetbrains-mono-roman.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/fonts/jetbrains-mono-roman.woff2
--------------------------------------------------------------------------------
/assets/fonts/jetbrains-mono-italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SourceTheme-i18n/Source/HEAD/assets/fonts/jetbrains-mono-italic.woff2
--------------------------------------------------------------------------------
/partials/search-toggle.hbs:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/partials/icons/twitter.hbs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/partials/icons/search.hbs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/partials/icons/arrow.hbs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/partials/icons/rss.hbs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/partials/icons/burger.hbs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/index.hbs:
--------------------------------------------------------------------------------
1 | {{!< default}}
2 | {{!-- The tag above means: insert everything in this file into the body of the default.hbs template --}}
3 |
4 |
{{custom_excerpt}}
14 | {{/if}} 15 | {{> "feature-image"}} 16 |14 | {{#if @custom.signup_subheading}}{{@custom.signup_subheading}}{{else}}{{@site.description}}{{/if}} 15 |
16 |{{primary_tag.name}}
22 | {{/if}} 23 |{{custom_excerpt}}
26 | {{/if}} 27 | {{#unless custom_excerpt}} 28 | {{#if excerpt}} 29 |{{excerpt}}
30 | {{/if}} 31 | {{/unless}} 32 | 45 |{{custom_excerpt}}
18 | {{/if}} 19 | 20 | {{#if @custom.show_post_metadata}} 21 | 43 | {{/if}} 44 | 45 | {{> "feature-image"}} 46 | 47 |