├── marco
├── assets
│ └── css
│ │ ├── style.css
│ │ ├── editor.css
│ │ └── main.css
├── thumbnail.png
├── 404.hbs
├── partials
│ ├── footer.hbs
│ ├── pagination.hbs
│ ├── head.hbs
│ └── menu.hbs
├── tag.hbs
├── index.hbs
├── marco.lang.json
├── author.hbs
├── post.hbs
├── visual-override.js
└── config.json
├── .gitignore
├── ThemePreview.jpg
├── README.md
└── LICENSE
/marco/assets/css/style.css:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Autogenerated TMP Publii Files
2 | *.TMP
3 |
--------------------------------------------------------------------------------
/ThemePreview.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enslaved2die/Publii_Marco/HEAD/ThemePreview.jpg
--------------------------------------------------------------------------------
/marco/thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enslaved2die/Publii_Marco/HEAD/marco/thumbnail.png
--------------------------------------------------------------------------------
/marco/404.hbs:
--------------------------------------------------------------------------------
1 | {{> head}}
2 |
3 |
4 | {{!-- .page-header --}}
12 |
13 | {{> footer}}
14 |
--------------------------------------------------------------------------------
/marco/partials/footer.hbs:
--------------------------------------------------------------------------------
1 |
8 | {{!-- .container --}}
9 | {{!-- Insert some custom code by Custom HTML tool --}}
10 | {{{@footerCustomCode}}}
11 | {{!-- GDPR Cookie popup generated natively by Publii app --}}
12 | {{{ publiiFooter }}}
13 |