├── .gitignore
├── LICENSE
├── README.md
├── components
├── admin.html
├── blog.html
├── components
│ └── footer.html
├── contacts.html
├── content.html
├── cookies.html
├── css
│ └── bulma
│ │ ├── bulma-theme.css
│ │ ├── bulma-theme.css.map
│ │ ├── bulma-theme.min.css
│ │ └── bulma-theme.min.css.map
├── cta.html
├── ecomm.html
├── faq.html
├── favicon.ico
├── features.html
├── footers.html
├── gallery.html
├── grid.html
├── hero.html
├── how-it-works.html
├── http-codes.html
├── index.php
├── navbar.html
├── pagination.html
├── placeholder
│ └── icons
│ │ ├── apple.svg
│ │ ├── calendar-o.svg
│ │ ├── check.svg
│ │ ├── chevron-circle-down.svg
│ │ ├── chevron-left.svg
│ │ ├── chevron-right.svg
│ │ ├── chrome.svg
│ │ ├── clock-o.svg
│ │ ├── close.svg
│ │ ├── envelope-o.svg
│ │ ├── envelope.svg
│ │ ├── facebook-f.svg
│ │ ├── facebook-official.svg
│ │ ├── file-text-o.svg
│ │ ├── firefox.svg
│ │ ├── folder-o.svg
│ │ ├── folder-open.svg
│ │ ├── google.svg
│ │ ├── heart-o.svg
│ │ ├── instagram.svg
│ │ ├── internet-explorer.svg
│ │ ├── level-down.svg
│ │ ├── level-up.svg
│ │ ├── linkedin-in.svg
│ │ ├── map-marker.svg
│ │ ├── phone.svg
│ │ ├── plane.svg
│ │ ├── play-circle-o.svg
│ │ ├── play.svg
│ │ ├── quote-left.svg
│ │ ├── safari.svg
│ │ ├── share-alt.svg
│ │ ├── twitter.svg
│ │ ├── unicorn.svg
│ │ ├── users.svg
│ │ └── white
│ │ ├── clock-o.svg
│ │ ├── facebook-f.svg
│ │ ├── google.svg
│ │ └── twitter.svg
├── portfolio.html
├── pricing.html
├── resources
│ ├── DirectoryLister.php
│ ├── config.php
│ ├── fileTypes.php
│ └── themes
│ │ └── bootstrap
│ │ ├── css
│ │ └── style.css
│ │ ├── default_footer.php
│ │ ├── default_header.php
│ │ ├── img
│ │ └── folder.png
│ │ ├── index.php
│ │ └── js
│ │ └── directorylister.js
├── robots.txt
├── sign-in.html
├── sitemap.xml
├── team.html
└── testimonials.html
├── package-lock.json
├── package.json
├── src
├── admin.pug
├── assets
│ ├── favicon.ico
│ ├── placeholder
│ │ └── icons
│ │ │ ├── apple.svg
│ │ │ ├── calendar-o.svg
│ │ │ ├── check.svg
│ │ │ ├── chevron-circle-down.svg
│ │ │ ├── chevron-left.svg
│ │ │ ├── chevron-right.svg
│ │ │ ├── chrome.svg
│ │ │ ├── clock-o.svg
│ │ │ ├── close.svg
│ │ │ ├── envelope-o.svg
│ │ │ ├── envelope.svg
│ │ │ ├── facebook-f.svg
│ │ │ ├── facebook-official.svg
│ │ │ ├── file-text-o.svg
│ │ │ ├── firefox.svg
│ │ │ ├── folder-o.svg
│ │ │ ├── folder-open.svg
│ │ │ ├── google.svg
│ │ │ ├── heart-o.svg
│ │ │ ├── instagram.svg
│ │ │ ├── internet-explorer.svg
│ │ │ ├── level-down.svg
│ │ │ ├── level-up.svg
│ │ │ ├── linkedin-in.svg
│ │ │ ├── map-marker.svg
│ │ │ ├── phone.svg
│ │ │ ├── plane.svg
│ │ │ ├── play-circle-o.svg
│ │ │ ├── play.svg
│ │ │ ├── quote-left.svg
│ │ │ ├── safari.svg
│ │ │ ├── share-alt.svg
│ │ │ ├── twitter.svg
│ │ │ ├── unicorn.svg
│ │ │ ├── users.svg
│ │ │ └── white
│ │ │ ├── clock-o.svg
│ │ │ ├── facebook-f.svg
│ │ │ ├── google.svg
│ │ │ └── twitter.svg
│ └── robots.txt
├── blog.pug
├── components
│ └── footer.pug
├── contacts.pug
├── content.pug
├── cookies.pug
├── cta.pug
├── ecomm.pug
├── faq.pug
├── features.pug
├── footers.pug
├── gallery.pug
├── grid.pug
├── hero.pug
├── how-it-works.pug
├── http-codes.pug
├── navbar.pug
├── pagination.pug
├── portfolio.pug
├── pricing.pug
├── scss
│ ├── _custom-variables.scss
│ └── bulma-theme.scss
├── sign-in.pug
├── team.pug
└── testimonials.pug
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | public
3 | deploy.js
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 - Present. Bulma CSS Templates
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # [Bulma Css Components](https://components.bulma-css.com)
2 |
3 | Open-Source project. The initial components generated by [bulma.dev](https://bulma.dev/).
4 |
5 |
6 |
7 | 
8 |
9 |
10 |
11 | ## Getting Started
12 |
13 | Project's source files are placed in ./src/ directory.
14 |
15 | * ./src/assets - default static files (eg. image placeholders). You should replace them with your own files.
16 |
17 | * ./src/scss/ - Sass sources used to build Bulma theme. Variables used in Theme Customizer are located in custom-variables.scss file.
18 |
19 | * ./src/*.pug - All your pages (templates) are stored in separated .pug files.
20 |
21 |
22 |
23 | ## How to use it
24 |
25 | ```
26 | # Install dependencies
27 | $ yarn
28 |
29 | # Run dev server with live preview (Browsersync)
30 | $ yarn start
31 |
32 | # Or make production build
33 | yarn build
34 | ```
35 |
36 |
37 |
38 | ## Components
39 |
40 | - [admin](/src/admin.pug) - [demo](https://components.bulma-css.com/admin.html)
41 | - [blog](/src/blog.pug) - [demo](https://components.bulma-css.com/blog.html)
42 | - [contacts](/src/contacts.pug) - [demo](https://components.bulma-css.com/contacts.html)
43 | - [content](/src/content.pug) - [demo](https://components.bulma-css.com/content.html)
44 | - [cookies](/src/cookies.pug) - [demo](https://components.bulma-css.com/cookies.html)
45 | - [cta](/src/cta.pug) - [demo](https://components.bulma-css.com/cta.html)
46 | - [ecomm](/src/ecomm.pug) - [demo](https://components.bulma-css.com/ecomm.html)
47 | - [faq](/src/faq.pug) - [demo](https://components.bulma-css.com/faq.html)
48 | - [features](/src/features.pug) - [demo](https://components.bulma-css.com/features.html)
49 | - [gallery](/src/gallery.pug) - [demo](https://components.bulma-css.com/gallery.html)
50 | - [grid](/src/grid.pug) - [demo](https://components.bulma-css.com/grid.html)
51 | - [hero](/src/hero.pug) - [demo](https://components.bulma-css.com/hero.html)
52 | - [how-it-works](/src/how-it-works.pug) - [demo](https://components.bulma-css.com/how-it-works.html)
53 | - [http-codes](/src/http-codes.pug) - [demo](https://components.bulma-css.com/http-codes.html)
54 | - [navbar](/src/navbar.pug) - [demo](https://components.bulma-css.com/navbar.html)
55 | - [pagination](/src/pagination.pug) - [demo](https://components.bulma-css.com/pagination.html)
56 | - [portfolio](/src/portfolio.pug) - [demo](https://components.bulma-css.com/portfolio.html)
57 | - [pricing](/src/pricing.pug) - [demo](https://components.bulma-css.com/pricing.html)
58 | - [sign-in](/src/sign-in.pug) - [demo](https://components.bulma-css.com/sign-in.html)
59 | - [team](/src/team.pug) - [demo](https://components.bulma-css.com/team.html)
60 | - [testimonials](/src/testimonials.pug) - [demo](https://components.bulma-css.com/testimonials.html)
61 |
62 |
63 |
64 | ---
65 | Supported by [Bulma-CSS](https://bulma-css.com/)
66 |
--------------------------------------------------------------------------------
/components/components/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
Content Elements built styled with Bulma - source code
18 |Our mission is not to outsell Hooli with a product like their latest Box 3. We are not in it for the money - we are in it to make the whole world decentralized. To give you control over your data. To change by the internet as we know it by integrating a very important feature into it - freedom.
25 |Our mission is not to outsell Hooli with a product like their latest Box 3. We are not in it for the money - we are in it to make the whole world decentralized. To give you control over your data. To change by the internet as we know it by integrating a very important feature into it - freedom.
33 |Cookies styled with Bulma - source code
18 |We use cookies to personalise content, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners. If you want to change your cookie setting, please see the ‘how to reject cookies' section of our Cookie Policy. Otherwise, if you agree to our use of cookies, please continue to use our website.
26 | 27 |We use cookies to personalise content, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners. If you want to change your cookie setting, please see the ‘how to reject cookies' section of our Cookie Policy. Otherwise, if you agree to our use of cookies, please continue to use our website.
34 | 35 |Call to action styled with Bulma - source code
18 |Decentralized, secure, private. The PiperNet is on it's way to revolutionize every smartphone, PC, and smart-fridge near you.
Join the Revolution! 25 |Decentralized, secure, private. The PiperNet is on it's way to revolutionize every smartphone, PC, and smart-fridge near you.
32 | 33 |Features Elements styled with Bulma - source code
18 |Your data is virtually unhackable compared to traditional net
56 |Nobody is tracking you when your activity when you use Piper Net
65 |Previously unimaginable transfer speed thanks to middle-out compression
74 |Footers styled with Bulma - source code
18 |Image Gallery styled with Bulma - source code
18 |Grid styled with Bulma - source code
18 |Your data is stored in many places at once. Awesome, right?
27 |Nobody will be able to use your data without your consent.
31 |Your data is virtually unhackable compared to traditional net.
42 |Nobody is tracking you when your activity when you use PiperNet.
46 |Previously unimaginable transfer speed thanks to middle-out compression.
50 |Decentralized design allows data to flow freely and efficiently.
54 |Gather computing power from idle machines in your network to act as a decentralized server.
58 |Store your data safely, and access it faster than ever.
62 |Hero styled with Bulma - source code
18 |How it Works elements styled with Bulma - source code
18 |Using our Piper Assistant application, you can move your data to be stored our decentralized network with simple drag & drop.
29 |We want to make sure that you can keep using the software that you use to manage your business.
34 |As with all innovative technologies, sometimes unpredictable things will happen, and you can always count on our support to solve issues for you.
39 |Let's get you connected! We've designed a simple, efficient process for companies migrating to PiperNet. Here's how it works.
Start Setup! 52 |Http Codes elements styled with Bulma - source code
18 |Page not found
27 |As well as funds, willing VC-s, client-centered approach, basic UX skills, proper level of nutrients, girlfriends and most of our dignity.
28 |Page not found
39 |As well as funds, willing VC-s, client-centered approach, basic UX skills, proper level of nutrients, girlfriends and most of our dignity.
40 |Navbars styled with Bulma - source code
18 |Pagination styled with Bulma - source code
18 |Portfolio styled with Bulma - source code
18 |Pricing components styled with Bulma - source code
18 |Join our network, but build and manage everything yourself.
30 |We build what you need, but you still need to manage your data.
46 |We do everything for you, including managing your data.
60 |Join our network, but build and manage everything yourself.
83 |We build what you need, but you still need to manage your data.
93 |We do everything for you, including managing your data.
103 |Sign-in Forms styled with Bulma - source code
18 |Team Cards styled with Bulma - source code
18 |We are the guys that made this whole thing possible
25 |CEO
34 |When I'm not obsessively stressing about the fate of Pied Piper, I sometimes give lectures to school kids. Spend most of my time coding.
35 |CTO
44 |I am the absolute best programmer at Pied Piper (especially better than Gilfoyle). My genius shines and guides the Pied Piper team.
45 |Chief Systems Architect
54 |I work on Pied Piper only for the advanced technology. I don't really like most people I work with, but they need me to put out their fires, so I stay.
55 |Testimonial Cards styled with Bulma - source code
18 |It's a really cool network. Like, we had a fight with Richard at one point, and I think they deleted some of my data, but then they brought it back. Just bro's being bro's. Respected!
32 |CEO at K-Hole
34 |This is such a great product that I feel aroused every time I use it. I didn't know the boys would be able to build, but god damn it, they did it. Kickass!
42 |Investor, Angel, Great Guy
44 |Even though I have been dismantled, I live on as an artificial intelligence on the PiperNet. I really like it here. Still waiting for Jared to Piper-chat with me sometime.
52 |Artificial Intelligence
54 |It's a really cool network. Like, we had a fight with Richard at one point, and I think they deleted some of my data, but then they brought it back. Just bro's being bro's. Respected!
65 |CEO at K-Hole
72 |This is such a great product that I feel aroused every time I use it. I didn't know the boys would be able to build, but god damn it, they did it. Kickass!
75 |Investor, Angel, Great Guy
82 |Even though I have been dismantled, I live on as an artificial intelligence on the PiperNet. I really like it here. Still waiting for Jared to Piper-chat with me sometime.
85 |Artificial Intelligence
92 |