├── content └── .gitkeep ├── .gitignore ├── screenshot.jpg ├── screenshot.png ├── sass ├── _vars.scss ├── main.scss ├── _footer.scss ├── _about.scss ├── _base.scss ├── _animation.scss ├── _projects.scss ├── _header.scss └── lib │ ├── _normalize.scss │ ├── _devicon.scss │ └── _fontawesome.scss ├── static ├── img │ ├── .DS_Store │ ├── skate.jpg │ └── mountains.jpg ├── fonts │ ├── devicon.ttf │ ├── devicon.woff │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── js │ ├── main.js │ ├── app.js │ └── sweet-scroll.min.js ├── vercel.json ├── templates ├── page.html ├── index.html ├── content.html └── macros.html ├── theme.toml ├── LICENSE.md ├── config.toml └── README.md /content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/* 2 | -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/screenshot.png -------------------------------------------------------------------------------- /sass/_vars.scss: -------------------------------------------------------------------------------- 1 | $main: #1a222c; 2 | $sec: #4B5664; 3 | $purple: #54516A; 4 | $cut: 550px; -------------------------------------------------------------------------------- /static/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/img/.DS_Store -------------------------------------------------------------------------------- /static/img/skate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/img/skate.jpg -------------------------------------------------------------------------------- /static/fonts/devicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/fonts/devicon.ttf -------------------------------------------------------------------------------- /static/img/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/img/mountains.jpg -------------------------------------------------------------------------------- /static/fonts/devicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/fonts/devicon.woff -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "build": { 3 | "env": { 4 | "ZOLA_VERSION": "0.14.0" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svavs/particle-zola/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | 3 | {% block content %} 4 | {{ page.content }} 5 | {% endblock content %} 6 | 7 | -------------------------------------------------------------------------------- /sass/main.scss: -------------------------------------------------------------------------------- 1 | @import "lib/normalize"; 2 | @import "lib/fontawesome"; 3 | @import "lib/devicon"; 4 | 5 | @import 'base'; 6 | @import 'vars'; 7 | @import 'animation'; 8 | @import 'header'; 9 | @import 'about'; 10 | @import 'projects'; 11 | @import 'footer'; 12 | -------------------------------------------------------------------------------- /sass/_footer.scss: -------------------------------------------------------------------------------- 1 | .footer { 2 | background: $main; 3 | padding: 10px 0; 4 | margin-top: 100px; 5 | text-align: center; 6 | color: #FFF; 7 | .love { 8 | color: red; 9 | } 10 | a { 11 | text-decoration: none; 12 | margin: 0; 13 | color: #FFF; 14 | &:hover{ 15 | color: $sec; 16 | } 17 | &:active { 18 | color: $sec; 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- 1 | name = "particle" 2 | description = "Particle theme for Zola" 3 | license = "MIT" 4 | homepage = "https://github.com/svavs/particle-zola" 5 | min_version = "0.16.1" 6 | demo = "https://particle-zola.vercel.app/" 7 | 8 | [author] 9 | name = "Silvano Sallese" 10 | homepage = "https://svavs.github.io/" 11 | 12 | [original] 13 | author = "Anon Developer" 14 | homepage = "https://nrandecker.github.io/particle/" 15 | repo = "https://github.com/nrandecker/particle" 16 | 17 | [extra] 18 | 19 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | {% import "macros.html" as macros %} 2 | {% import "content.html" as content %} 3 | 4 | 5 | 6 | 7 | {{ macros::head() }} 8 | 9 |
10 | 11 | {{ macros::header() }} 12 | 13 |{{ config.extra.user_description }}
5 |Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. 13 | Vinyl XOXO lumbersexual
14 |Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. 21 | Vinyl XOXO lumbersexual
22 |Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. 29 | Vinyl XOXO lumbersexual
30 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
48 | Check it out 49 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
61 | Check it out 62 |