├── .dependencies ├── .github └── workflows │ └── build-skeleton.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── readme_1.png ├── blueprints.yaml ├── config ├── plugins │ └── simple_form.yaml ├── site.yaml └── system.yaml ├── data └── .gitkeep ├── pages ├── 01.home │ ├── _callout │ │ └── callout.md │ ├── _features │ │ ├── feature-image-1.png │ │ ├── feature-image-2.png │ │ ├── feature-image-3.png │ │ └── features.md │ ├── _pricing │ │ └── pricing.md │ ├── _screenshots │ │ ├── abstract-vector.jpg │ │ ├── authentic-vintage.jpg │ │ ├── embossed-paper.jpg │ │ ├── hipster.jpg │ │ ├── judah.jpg │ │ ├── line-icons.jpg │ │ ├── screenshots.md │ │ ├── spot-uv-logo.jpg │ │ └── tshirt-mockup.jpg │ ├── _showcase │ │ ├── hero-image.png │ │ └── showcase.md │ ├── _subscribe │ │ └── subscribe.md │ ├── _testimonials │ │ └── testimonials.md │ └── modular.md └── 02.demo │ ├── default.md │ └── sample-image.jpg ├── plugins └── .gitkeep ├── screenshot.jpg └── themes └── .gitkeep /.dependencies: -------------------------------------------------------------------------------- 1 | git: 2 | problems: 3 | url: https://github.com/getgrav/grav-plugin-problems 4 | path: user/plugins/problems 5 | branch: master 6 | error: 7 | url: https://github.com/getgrav/grav-plugin-error 8 | path: user/plugins/error 9 | branch: master 10 | woo: 11 | url: https://github.com/getgrav/grav-theme-woo 12 | path: user/themes/woo 13 | branch: master 14 | links: 15 | problems: 16 | src: grav-plugin-problems 17 | path: user/plugins/problems 18 | scm: github 19 | error: 20 | src: grav-plugin-error 21 | path: user/plugins/error 22 | scm: github 23 | woo: 24 | src: grav-theme-woo 25 | path: user/themes/woo 26 | scm: github 27 | -------------------------------------------------------------------------------- /.github/workflows/build-skeleton.yml: -------------------------------------------------------------------------------- 1 | name: Build Skeleton 2 | 3 | on: 4 | release: 5 | types: [ published ] 6 | workflow_dispatch: 7 | inputs: 8 | tag: 9 | description: 'Target tag for re-upload' 10 | required: true 11 | default: '' 12 | version: 13 | description: 'Which Grav release to use' 14 | required: true 15 | default: 'latest' 16 | admin: 17 | description: 'Create also a package with Admin' 18 | required: true 19 | default: true 20 | 21 | jobs: 22 | build: 23 | runs-on: ubuntu-latest 24 | steps: 25 | - uses: actions/checkout@v2 26 | - name: Extract Tag 27 | run: echo "SKELETON_VERSION=${{ github.event.inputs.tag || github.ref }}" >> $GITHUB_ENV 28 | - name: Generate Skeleton Packages 29 | uses: getgrav/skeleton-builder@v1 30 | with: 31 | version: ${{ github.event.inputs.version || 'latest' }} 32 | admin: ${{ github.event.inputs.admin || true }} 33 | - name: Upload packages to release 34 | uses: svenstaro/upload-release-action@v2 35 | with: 36 | repo_token: ${{ secrets.GITHUB_TOKEN }} 37 | tag: ${{ env.SKELETON_VERSION }} 38 | file: dist/*.zip 39 | overwrite: true 40 | file_glob: true 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Sass 2 | .sass-cache 3 | 4 | # Grav Specific 5 | data/* 6 | !data/.* 7 | plugins/* 8 | !plugins/.* 9 | themes/* 10 | !themes/.* 11 | 12 | # OS Generated 13 | .DS_Store* 14 | ehthumbs.db 15 | Icon? 16 | Thumbs.db 17 | *.swp 18 | 19 | # phpstorm 20 | .idea/* 21 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v1.0.1 2 | ## 09/18/2015 3 | 4 | 1. [](#fix) 5 | * Newest grav compatibility update 6 | 7 | # v1.0.0 8 | ## 05/09/2015 9 | 10 | 1. [](#new) 11 | * ChangeLog started... 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE: 2 | 3 | WOO is released under the Creative Commons Attribution 3.0 License 4 | (http://creativecommons.org/licenses/by/3.0/). This means that you are free: 5 | 6 | to Share - to copy, distribute, display, and perform the work 7 | to Remix - to make derivative works 8 | to make commercial use of the work 9 | 10 | Under the following conditions: 11 | 12 | Attribution - You must attribute the work in the manner specified by the 13 | author or licensor (but not in any way that suggests that they endorse you 14 | or your use of the work). 15 | 16 | For any reuse or distribution, you must make clear to others the license 17 | terms of this work 18 | 19 | Any of these conditions can be waived if you get permission from the 20 | copyright holder 21 | 22 | Attribution: 23 | 24 | You must include a credit link to our website(http://www.Styleshout.com) somewhere on 25 | your site. We prefer the footer credit that comes with the template but you are still 26 | free to move it somewhere else. 27 | 28 | 29 | ----------------------------------------------------------------------------------------------------- 30 | 31 | 32 | REMOVING THE LINK: 33 | 34 | We understand that there are situations where you want to use the template without the 35 | crediting obligation. If that's your case, you can always send us a 36 | credit removal fee of 10 USD through Paypal. This will allow you to use the 37 | template attribution/credit link free on ONE DOMAIN name. 38 | 39 | You can send your payments through Paypal to this address: ealigam@gmail.com 40 | 41 | If possible, kindly send us the site's url where the template is being used. 42 | Also, keep your Paypal receipt as proof of payment and your good to go. 43 | 44 | 45 | ------------------------------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Woo Skeleton for Grav 2 | 3 | ![Woo](assets/readme_1.png) 4 | 5 | Woo is a clean, modern, landing page site template by [Styleshout](http://www.styleshout.com/). It has a fully responsive design and was tested on all major browser and mobile devices. Woo is the perfect template to showcase your apps, services or digital goods. 6 | 7 | # Features 8 | 9 | * HTML5 and CSS3 10 | * Fully Responsive 11 | * Attractive and modern design 12 | * Various templates for presenting your content 13 | * CSS Animations 14 | * Fontawesome icon fonts 15 | * @font-face custom web fonts 16 | * jQuery enhanced 17 | * Flexslider 18 | * Image lightbox 19 | * Smooth scrolling effect 20 | * Cross browser compatible 21 | 22 | ## Basic Setup for a new Grav site 23 | 24 | The simplest way to install Woo theme for Grav is to download and install the Woo Skeleton package: 25 | 26 | 1. [Download Woo Skeleton](http://getgrav.org/downloads/skeletons#extras) 27 | 2. Simply unzip the package into your web root folder. 28 | 3. Point your browser at the folder, job done! 29 | 30 | **TIP:** Check out the [general Grav installation instructions](http://learn.getgrav.org/basics/installation) for more details on this process. 31 | 32 | --- 33 | 34 | ## Existing Grav site 35 | 36 | It is possible to install just the theme, but page content will need to reference the [Woo theme](https://github.com/getgrav/grav-theme-woo)'s supported templates. It is strongly advised to at least install the Woo Skeleton package to see the theme's capabilities in action. 37 | 38 | To install **just** the theme: 39 | 40 | ``` 41 | $ bin/gpm install woo 42 | ``` 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /assets/readme_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/assets/readme_1.png -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- 1 | name: Woo Site 2 | version: 1.0.1 3 | description: "Woo is a clean, modern, landing page site template by Styleshout. It has a fully responsive design and was tested on all major browser and mobile devices." 4 | icon: group 5 | author: 6 | name: Team Grav 7 | email: devs@getgrav.org 8 | url: http://getgrav.org 9 | homepage: https://github.com/getgrav/grav-skeleton-woo-site 10 | demo: http://demo.getgrav.org/woo-skeleton 11 | keywords: woo, skeleton, scroll, page, modular 12 | bugs: https://github.com/getgrav/grav-skeleton-woo-site/issues 13 | license: MIT 14 | -------------------------------------------------------------------------------- /config/plugins/simple_form.yaml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | 3 | token: "" 4 | template_file: "simple_form" 5 | 6 | fields: 7 | 8 | messages: 9 | success: "Your message has been sent." 10 | -------------------------------------------------------------------------------- /config/site.yaml: -------------------------------------------------------------------------------- 1 | title: Woo 2 | author: 3 | name: Joe Bloggs 4 | email: 'joe@test.com' 5 | metadata: 6 | description: 'Woo is a free and responsive theme for **Grav**. Its a port of Woo template by Styleshout.' 7 | 8 | # Site settings 9 | title: Awesome Title 10 | email: your-email@domain.com 11 | description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description." 12 | 13 | # Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) 14 | social: 15 | - url: "#" 16 | icon: facebook 17 | - url: "#" 18 | icon: twitter 19 | - url: "#" 20 | icon: google-plus 21 | 22 | # Main Menu 23 | menu: 24 | - text: Features 25 | link: "#features" 26 | - text: Pricing 27 | link: "#pricing" 28 | - text: Screenshots 29 | link: "#screenshots" 30 | - text: Testimonials 31 | link: "#testimonials" 32 | - text: Subscribe 33 | link: "#subscribe" 34 | 35 | footer: 36 | text: "This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris." 37 | address: 38 | title: COME VISIT 39 | lines: 40 | - line: 1600 Amphitheatre Parkway 41 | - line: Mountain View, CA 42 | - line: 94043 US 43 | social_title: Socialize 44 | contact: 45 | title: CONTACT US 46 | lines: 47 | - text: 647.343.8234 48 | url: "#" 49 | - text: 123.456.7890 50 | url: "#" 51 | - text: someone@woosite.com 52 | url: "mailto:someone@woosite.com" 53 | -------------------------------------------------------------------------------- /config/system.yaml: -------------------------------------------------------------------------------- 1 | home: 2 | alias: '/home' 3 | 4 | pages: 5 | theme: woo 6 | process: 7 | markdown: true 8 | twig: false 9 | markdown: 10 | extra: true 11 | 12 | cache: 13 | enabled: false 14 | check: 15 | method: file 16 | driver: auto 17 | prefix: 'g' 18 | 19 | twig: 20 | cache: true 21 | debug: true 22 | auto_reload: true 23 | autoescape: false 24 | 25 | assets: 26 | css_pipeline: false 27 | css_minify: true 28 | css_rewrite: true 29 | js_pipeline: false 30 | js_minify: true 31 | collections: 32 | jquery: system://assets/jquery/jquery-2.1.4.min.js 33 | 34 | debugger: 35 | enabled: false 36 | twig: true 37 | shutdown: 38 | close_connection: true 39 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/data/.gitkeep -------------------------------------------------------------------------------- /pages/01.home/_callout/callout.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Get Hosting. 3 | buttons: 4 | - text: Sign Up Now 5 | url: http://www.dreamhost.com/r.cgi?287326|STYLESHOUT 6 | --- 7 | ##[Host This Template on Dreamhost.](http://www.dreamhost.com/r.cgi?287326|STYLESHOUT) 8 | Looking for an awesome and reliable webhosting? Try [DreamHost](http://www.dreamhost.com/r.cgi?287326|STYLESHOUT). 9 | Get $50 off when you sign up with the promocode STYLESHOUT. -------------------------------------------------------------------------------- /pages/01.home/_features/feature-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_features/feature-image-1.png -------------------------------------------------------------------------------- /pages/01.home/_features/feature-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_features/feature-image-2.png -------------------------------------------------------------------------------- /pages/01.home/_features/feature-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_features/feature-image-3.png -------------------------------------------------------------------------------- /pages/01.home/_features/features.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Features 3 | visible: false 4 | rows: 5 | - title: Simple, Clean and Modern Design. 6 | description: Lorem ipsum dolor sit amet, ea eum labitur scripserit, illum complectitur deterruisset at pro. Odio quaeque reformidans est eu, expetendis intellegebat has ut, viderer invenire ut his. Has molestie percipit an. Falli volumus efficiantur sed id, ad vel noster propriae. Ius ut etiam vivendo, graeci iudicabit constituto at mea. No soleat fabulas prodesset vel, ut quo solum dicunt. Nec et amet vidisse mentitum. Cibo mutat nulla ei eam. 7 | description_position: right 8 | image: feature-image-1.png 9 | name: design 10 | - title: Fully Responsive. 11 | description: Aenean condimentum, lacus sit amet luctus lobortis, dolores et quas molestias excepturi enim tellus ultrices elit, amet consequat enim elit noneas sit amet luctu. Quis nostrum exercitationem ullam corporis suscipit laboriosam.Our library is continually refreshed with the latest on web technology so you'll never fall behind. Quis nostrum exercitationem ullam corporis suscipit laboriosam. 12 | description_position: left 13 | image: feature-image-2.png 14 | name: responsive 15 | - title: Cross-Browser Compatible. 16 | description: Lorem ipsum dolor sit amet, ea eum labitur scripserit, illum complectitur deterruisset at pro. Odio quaeque reformidans est eu, expetendis intellegebat has ut, viderer invenire ut his. Has molestie percipit an. Falli volumus efficiantur sed id, ad vel noster propriae. Ius ut etiam vivendo, graeci iudicabit constituto at mea. No soleat fabulas prodesset vel, ut quo solum dicunt. Nec et amet vidisse mentitum. Cibo mutat nulla ei eam. 17 | description_position: right 18 | image: feature-image-3.png 19 | name: cross-browser 20 | - title: Video Support. 21 | description: Aenean condimentum, lacus sit amet luctus lobortis, dolores et quas molestias excepturi enim tellus ultrices elit, amet consequat enim elit noneas sit amet luctu. Quis nostrum exercitationem ullam corporis suscipit laboriosam.Our library is continually refreshed with the latest on web technology so you'll never fall behind. Quis nostrum exercitationem ullam corporis suscipit laboriosam. 22 | description_position: left 23 | video: http://player.vimeo.com/video/14592941 24 | name: video 25 | --- -------------------------------------------------------------------------------- /pages/01.home/_pricing/pricing.md: -------------------------------------------------------------------------------- 1 | --- 2 | columns: 3 | - title: Starter 4 | price1: Free 5 | price2: per month 6 | icon: cog 7 | features: 8 | - name: 1GB Storage 9 | - name: 5GB Bandwidth 10 | - name: 2 Domains 11 | - name: 3 Databases 12 | - name: 1 FTP Account 13 | - name: 25 Email Accounts 14 | buttons: 15 | - text: Sign Up 16 | url: "#" 17 | - title: Standard 18 | price1: $9.99 19 | price2: per month 20 | icon: thumbs-up 21 | features: 22 | - name: 3GB Storage 23 | - name: 10GB Bandwidth 24 | - name: 3 Domains 25 | - name: 5 Databases 26 | - name: 3 FTP Account 27 | - name: 30 Email Accounts 28 | buttons: 29 | - text: Sign Up 30 | url: "#" 31 | - title: Premium 32 | price1: $19.99 33 | price2: per month 34 | icon: star 35 | features: 36 | - name: 10GB Storage 37 | - name: 25GB Bandwidth 38 | - name: 5 Domains 39 | - name: 10 Databases 40 | - name: 10 FTP Account 41 | - name: 50 Email Accounts 42 | buttons: 43 | - text: Sign Up 44 | url: "#" 45 | - title: Ultimate 46 | price1: $29.99 47 | price2: per month 48 | icon: trophy 49 | features: 50 | - name: 30GB Storage 51 | - name: Unlimited Bandwidth 52 | - name: 10 Domains 53 | - name: 15 Databases 54 | - name: 10 FTP Account 55 | - name: 50 Email Accounts 56 | buttons: 57 | - text: Sign Up 58 | url: "#" 59 | --- 60 | #Pricing Tables. 61 | Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, 62 | eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam 63 | voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione 64 | voluptatem sequi nesciunt. -------------------------------------------------------------------------------- /pages/01.home/_screenshots/abstract-vector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/abstract-vector.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/authentic-vintage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/authentic-vintage.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/embossed-paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/embossed-paper.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/hipster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/hipster.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/judah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/judah.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/line-icons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/line-icons.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/screenshots.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Get Hosting. 3 | --- 4 | #Product Screenshots. 5 | Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, 6 | eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam 7 | voluptatem quia voluptas sit aspernatur aut odit aut fugit. -------------------------------------------------------------------------------- /pages/01.home/_screenshots/spot-uv-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/spot-uv-logo.jpg -------------------------------------------------------------------------------- /pages/01.home/_screenshots/tshirt-mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_screenshots/tshirt-mockup.jpg -------------------------------------------------------------------------------- /pages/01.home/_showcase/hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/01.home/_showcase/hero-image.png -------------------------------------------------------------------------------- /pages/01.home/_showcase/showcase.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: The perfect template to showcase your awesome product and service. 3 | showcase_image: hero-image.png 4 | buttons: 5 | - text: Free Trial 6 | url: '#' 7 | class: button trial animated shake 8 | - text: Learn More 9 | url: '#' 10 | class: button learn-more smoothscroll 11 | --- 12 | 13 | Aenean condimentum, lacus sit amet luctus lobortis, dolores et quas molestias excepturi enim tellus ultrices elit, amet consequat enim elit noneas sit amet luctu. Quis nostrum exercitationem ullam corporis suscipit laboriosam. -------------------------------------------------------------------------------- /pages/01.home/_subscribe/subscribe.md: -------------------------------------------------------------------------------- 1 |
2 |
3 | #MailChimp signup form. 4 | Adding your own MailChimp powered email sign-up is easy. 5 | Grab the super slim code from your MailChimp account and drop the code here. Lastly, remove the link and style tags 6 | that comes with the embedded code and your good to go. All styling is within our stylesheet. 7 |
8 |
9 | 10 |
11 | 12 |
13 | 14 | 15 | 16 |
17 |
18 | 19 | 20 | 21 |
22 |
23 | 24 |
25 |
26 | 27 |

We never share your information or use it to spam you.

28 | 29 |
30 | 31 |
-------------------------------------------------------------------------------- /pages/01.home/_testimonials/testimonials.md: -------------------------------------------------------------------------------- 1 | --- 2 | testimonials: 3 | - title: Steve Jobs 4 | quote: Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do. If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it. 5 | - title: Mr. Adobe 6 | quote: This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. 7 | --- 8 | #What People Are Saying. -------------------------------------------------------------------------------- /pages/01.home/modular.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Woo 3 | menu: Home 4 | onpage_menu: true 5 | body_class: index 6 | header_class: alt 7 | content: 8 | items: @self.modular 9 | order: 10 | by: default 11 | dir: asc 12 | custom: 13 | - _showcase 14 | - _features 15 | - _pricing 16 | - _callout 17 | - _screenshots 18 | - _testimonials 19 | - _subscribe 20 | --- 21 | 22 | 23 | -------------------------------------------------------------------------------- /pages/02.demo/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Style Guide 3 | --- 4 | 5 | #Style Guide. 6 | At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditipraesentium voluptatum 7 | deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate. 8 | At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium. 9 | 10 | ###Paragraph and Image 11 | ![Sample Image](sample-image.jpg?resize=100,100) {.pull-left} 12 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. 13 | Cras id urna. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu 14 | posuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentum 15 | odio, ac blandit ante orci ut diam. Cras fringilla magna. Phasellus suscipit, leo a pharetra 16 | condimentum, lorem tellus eleifend magna, eget fringilla velit magna id neque. 17 | posuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentum 18 | odio, ac blandit ante orci ut diam. Cras fringilla magna. Phasellus suscipit, leo a pharetra 19 | condimentum, lorem tellus eleifend magna, eget fringilla velit magna id neque. 20 | posuere nunc justo tempus leo. 21 | 22 | A [link](#), 23 | **strong text**, 24 | ***em text*** 25 | 26 | ###Block Quotes 27 | >Your work is going to fill a large part of your life, and the only way to be truly satisfied is 28 | >to do what you believe is great work. And the only way to do great work is to love what you do. 29 | >If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it. 30 | [Steve Jobs](#) 31 | 32 | ###Example Lists 33 | 1. Here is an example 34 | 2. of an ordered list 35 | 36 | + Here is an example 37 | + of an unordered list 38 | 39 | --- 40 | 41 | # h1 Heading 42 | ## h2 Heading 43 | ### h3 Heading 44 | #### h4 Heading 45 | ##### h5 Heading 46 | ###### h6 Heading 47 | --- 48 | ###Button 49 | [button](#) {.button} -------------------------------------------------------------------------------- /pages/02.demo/sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/pages/02.demo/sample-image.jpg -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/plugins/.gitkeep -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/screenshot.jpg -------------------------------------------------------------------------------- /themes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-woo-site/96d46cd52077074901b84d0a92f9a5c9420ce1d5/themes/.gitkeep --------------------------------------------------------------------------------