bulma-clean-theme 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 61986f5b2dcae879017e703f23c3c876b61d27ea
4
- data.tar.gz: 5dd4e1024e224e987e8944d8cce1e16c4e09c3d0
3
+ metadata.gz: c2866ad24c9fd3246a8c5f5fc678cfee8f539f8c
4
+ data.tar.gz: d29857874854ec47d33973fc8551befa9e22193f
5
5
  SHA512:
6
- metadata.gz: db4ce11862357299cb57657a108c58133ab9c2bac43cbcc6c794a391a02d8c0480d6090f69938938a2899d6c7344283e1ad7afd4fcea4d8580676264731c9362
7
- data.tar.gz: ab97bee8a46bea3cd74fe3e0691e6f6e6c02b081e2001a2a25da3f4530b155f5c8a973c609c0b9a93889e46698b8aa7e4c7d21fa9b722f4b1dbd4336c8f2681f
6
+ metadata.gz: 61b4747afe16485dae385662eec74a8130c48881a0665fe4a6a111aedd22bd73f28b3a3cbbd1a4e004b1fc98e97639983e3fad29acea319dbc7f56b32fd34188
7
+ data.tar.gz: b0c235cc7297afccd1f06d6b3c197cf224117ba14d2c84b7a66b15c6ebe0d70bba899e28f7b7570183a1accc0b50f3a91d304a9246c680522fc335c0430644e6
data/_includes/head.html CHANGED
@@ -3,10 +3,11 @@
3
3
  <meta name="viewport" content="width=device-width, initial-scale=1">
4
4
  <title>{{ page.title }} - {{ site.title }}</title>
5
5
  <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
6
+ <link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/favicon.png" />
6
7
  <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
7
8
  {% seo %}
8
9
  {%- if site.google_analytics -%}
9
10
  {%- include google-analytics.html -%}
10
11
  {%- endif -%}
11
12
  {%- include head-scripts.html -%}
12
- </head>
13
+ </head>
@@ -0,0 +1,37 @@
1
+ ---
2
+ layout: post
3
+ title: "Why use a static site generator"
4
+ date: 2018-05-28 10:50:07
5
+ categories: development
6
+ description: "There are many ways to make a website, but what about static site generators"
7
+ image: 'https://www.csrhymes.com//img/static-site-generator.jpg'
8
+ published: true
9
+ canonical_url: https://www.csrhymes.com/development/2018/05/28/why-use-a-static-site-generator.html
10
+ ---
11
+
12
+ There are many ways to make a website and many different CMS platforms you can use, such as WordPress and Joomla, as well as site builder tools that offer you drag and drop interfaces, but what about static site generators?
13
+
14
+ A static site is pretty much what it sounds like, a set of pre generated html pages. Other platforms take what you enter into the CMS and process the information stored in the database, alongside a template or many template partials and dynamically construct the page before serving the html to you in your browser.
15
+
16
+ ## Speed
17
+ The initial advantage of a static site over a dynamic, database driven site is the page speed as means a lot less processing has to be done before the page is delivered. Some CMS’s provide caching which means that the first visitor to the page gets a dynamic version and then stores a cache of the page. This means subsequent visitor to the page gets the page quicker than the first. If you have a regularly cleared cache, or low numbers of visitors, subsequent visitors may not benefit from the caching and would all experience the increased load times.
18
+
19
+ ## Version Control
20
+ The next advantage of a static site is that it is that it can be version controlled. Usually a CMS relies on a database, which means that if you delete a page or some page content you either have to have revisions enabled in your CMS so you can roll back to a previous version or you need regular backups of your database so you can roll that back to a previous version. A static site with version control means you can easily revert to a previous version of your site and content without the need for database manipulation.
21
+
22
+ ## Data Files
23
+ Static sites, such as Jekyll, also offer a way of storing data in a more human readable format, such as yaml or JSON. This means you can store data that is used in multiple places across your site in one file and reference it in many places. For example, you may have a data file containing products, which you want to list in a category page and a product details page and maybe feature it on the homepage as well. These files can also be version controlled, meaning any changes or updates to your datafiles can be undone easily. The files can also be easily edited in a text editor so if you need to make multiple product amends, such as updating a misspelt brand name you can use something as simple as find and replace to update the spelling in all places at once without having to navigate to multiple different pages in a CMS.
24
+
25
+ ## Design Freedom
26
+ The biggest benefit I find to a static site is there is more freedom for a frontend developer and how they design and build your site. Some CMS’s work in a particular way and you are limited by the way they work. Page builders are available for many CMS’s but it often results in a lot of effort to get a particular piece of content in a particular place on the page.
27
+
28
+ A static site generator gives you more freedom to write your own html and text onto the page in the format you want it, rather than having to customise or overwrite the html and css classes output by the page builder tool.
29
+
30
+ ## Data Protection
31
+ A lot of people like the idea of installing a plugin into a CMS to handle things such as contact forms, so people can contact you about something, but in all honesty, it’s easier just to have an email address on the page that users can click on and email you directly. The reason I say this is that you have to try and prevent spam emails by using some kind of captcha on the form, as well as maintaining an email service that will handle the form submission and either store the form data somewhere on your site or send it to you as an email. This is pretty basic stuff, but is further complicated by data privacy laws that dictate how you store customers data and how you protect it. I know a lot of small business users would prefer to not have the hassle of managing stored user data on their site.
32
+
33
+ ## Security
34
+ One last thing to consider is website security. There is always a chance that using a popular CMS will leave your site vulnerable as there are always security issues being identified. You need to constantly keep your site up to date and lock down the CMS login as secure as possible. With a static site, there is no login screen. The original content lives somewhere else and the compiled, generated html is all that needs to be uploaded to your website, minimising the risk. Any public facing website has some risk but anything you can do to minimise it is better for your website in the long run.
35
+
36
+ ## What will you use on your next project?
37
+ A static site may not be the first thing you consider when building your new website, but it’s definitely worth exploring the pros and cons before you start the next project. After all, a faster, more secure site is better for you and your visitors.
@@ -0,0 +1,144 @@
1
+ ---
2
+ layout: post
3
+ title: "Getting started with Bulma Clean Theme for Jekyll"
4
+ date: 2019-02-09 20:00:07
5
+ categories: development
6
+ description: "Getting started with Bulma Clean Theme for Jekyll and using it with GitHub Pages"
7
+ image: 'https://www.csrhymes.com/img/bulma-clean-theme.jpg'
8
+ published: true
9
+ canonical_url: https://www.csrhymes.com/development/2019/02/09/getting-started-with-bulma-clean-theme.html
10
+ ---
11
+
12
+ I have made a [theme for Jekyll](https://rubygems.org/gems/bulma-clean-theme) which is based on the Bulma frontend framework. It might look familiar, because I am also using it for this site. If you like the look of this theme then I thought I would write a little blog post about how to use it for your own site and how you can use it with GitHub Pages.
13
+
14
+ ## Getting started
15
+
16
+ First things first, you need a local instance of Jekyll running on your computer. I'm assuming you are familiar with Jekyll and have everything you need installed. If this is not the case, check out the documentation on the [Jekyll website](https://jekyllrb.com/docs/). For this example, lets call the site myblog.
17
+
18
+ Create a new installation of Jekyll, then go into the myblog directory:
19
+ ```bash
20
+ jekyll new myblog
21
+ cd myblog
22
+ ```
23
+
24
+ Then add the theme to the Gemfile:
25
+ ```
26
+ gem "bulma-clean-theme"
27
+ ```
28
+
29
+ Then add the theme to your _config.yml:
30
+ ```yaml
31
+ theme: bulma-clean-theme
32
+ ```
33
+
34
+ Then run bundle to install everything
35
+ ```bash
36
+ bundle
37
+ ```
38
+
39
+ You can then preview your site by running the usual command
40
+ ```bash
41
+ bundle exec jekyll serve
42
+ ```
43
+
44
+ ## Creating pages
45
+
46
+ A page can either be a html or a markdown file, as long as you set the frontmatter. There are a few settings that pages can use to customise the default theme a bit further if you so choose.
47
+
48
+ ```yaml
49
+ ---
50
+ layout: page
51
+ title: Page Title
52
+ subtitle: Page Subtitle
53
+ image: /path/to/image.jpg
54
+ description: The pages meta description
55
+ hero_image: /path/to/hero-image.jpg
56
+ hero_height: is-fullheight
57
+ ---
58
+ ```
59
+
60
+ If you don't set a subtitle, image, hero_image or hero_height then defaults will be used or in the case of the hero_image, no image will be used on the hero.
61
+
62
+ The theme uses the jekyll-seo-tag plugin so it will use the information you provide in the frontmatter to auto populate the meta tags and open graph tags.
63
+
64
+ ## Posts
65
+
66
+ Posts are created as per the standard Jekyll method, in a _posts directory, with each post named YYYY-MM-DD-name-of-post.markdown. For the post frontmatter you can use the same settings as a page, except you need to change the layout to post and add date and author settings.
67
+
68
+ ## Blog page
69
+
70
+ For the blog homepage, create a blog.html page with `layout: blog` and use the other settings from a normal page. The theme is set up to use jekyll-paginate so you just need to add pagination options to your _config.yml
71
+
72
+ ```yml
73
+ # Pagination settings
74
+ paginate: 5
75
+ paginate_path: "/blog/page:num"
76
+ ```
77
+
78
+ ## Site defaults
79
+
80
+ If you don't want to set each hero_image individually, then you can set default values in your _config.yml. The below example sets a default author, layout and hero image for every post. It also turns on the side bar on the right of post pages, which will display links to your latest posts.
81
+
82
+ ```yml
83
+ defaults:
84
+ -
85
+ scope:
86
+ path: ""
87
+ type: "posts"
88
+ values:
89
+ author: "Author Name"
90
+ layout: post
91
+ hero_image: /path/to/hero-image.jpg
92
+ show_sidebar: true
93
+ ```
94
+
95
+ ## Styles
96
+
97
+ The theme uses Bulma frontend framework which provides a wide range of sass variable customisations. If you want to overwrite any of the standard variables, such as the primary theme colour, then set a sass variable in a new file in assets/css/app.scss before importing the main stylesheet.
98
+
99
+ ```scss
100
+ ---
101
+ ---
102
+ $primary: #333333;
103
+ // Import Main CSS file from theme
104
+ @import "main";
105
+ ```
106
+
107
+ You can also add any of your own custom css to this file if you want to.
108
+
109
+ ### Navigation
110
+
111
+ Once you have created posts and pages, you will need to create a way for visitors to access them. The theme makes use of the Bulma navbar, which is configured through a simple yaml file. All you need to do is create a navigation.yml file in `_data` directory with the following format with the pages you want to include in the top navigation. You can now also add items to a dropdown menu.
112
+
113
+ ```yaml
114
+ - name: Page 1
115
+ link: page-1
116
+ - name: Blog
117
+ link: blog
118
+ dropdown:
119
+ - name: Page 2
120
+ link: page-2
121
+ ```
122
+
123
+ Bulma is pretty handy in the way it converts the same HTML into a mobile / tablet friendly navigation, so you only need to set the menu up once for all screen sizes.
124
+
125
+ ## Using bulma-clean-theme with Github Pages
126
+
127
+ For the site to work with Github Pages, all you need to do is update the _config.yml so it uses remote_theme instead of theme and update it to chrisrhymes/bulma-clean-theme so it knows which GitHub repo to pull the theme from when it builds your site.
128
+
129
+ ```yaml
130
+ #theme: bulma-clean-theme
131
+ remote_theme: chrisrhymes/bulma-clean-theme
132
+ ```
133
+
134
+ And then push up your changes to Github as normal.
135
+
136
+ There seems to be an issue where Jekyll doesn't work locally with remote_theme, so when working locally you have to add theme back in, but remember to comment theme out again before pushing back up to GitHub or you will probably get a build warning email.
137
+
138
+ ## I hope your not feeling overwhelmed
139
+
140
+ It may seem like there is a lot to do to get started, but really it shouldn't take very long to get a site up and running. All the options are there just in case you want to further customise the theme to be more personal to you, but you can just use the basic minimal settings to get yourself up and running.
141
+
142
+ ## Feedback and Issues
143
+
144
+ If you have any feedback, ideas or issues with how the theme could be improved, then please create an issue on the theme's GitHub page and I will try and take a look into it as soon as I can. The theme is still quite new and I have quite a few ideas for future enhancements, so I will write a new blog post on this site when any new features become available.
@@ -0,0 +1,165 @@
1
+ ---
2
+ layout: post
3
+ title: "Introducing some new layouts to Bulma Clean Theme"
4
+ date: 2019-07-23 08:00:07
5
+ description: "Introducing Product Pages and Landing Pages for Bulma Clean Theme"
6
+ image: 'https://www.csrhymes.com/img/landing-page.jpg'
7
+ hero_image: https://www.csrhymes.com/img/landing-page.jpg
8
+ hero_height: is-large
9
+ published: true
10
+ tags: webdev showdev webdesign
11
+ canonical_url: https://www.csrhymes.com/2019/07/23/introducing-some-new-layouts-to-bulma-clean-theme.html
12
+ ---
13
+
14
+
15
+ I’ve been meaning to write about some of the new features I have been rolling out to my Jekyll theme, [Bulma Clean Theme](https://www.csrhymes.com/bulma-clean-theme/), for a while but I have only just managed to push the update for the landing page layout last weekend. This article provides some of the thinking behind the updates, as well as a brief introduction to how to get started.
16
+
17
+ ## Product Pages
18
+
19
+ I use the theme to power my own personal website and decided that it would be good to update my [book pages](https://www.csrhymes.com/books), or book page as it was then. The page had used a very simple layout with both books on one page and was not really up to scratch. I decided it would be better to make each book its own page, and if I ever get round to it and write another book it would be easy to add another to the site in the future. Rather than just building these pages for my own site, I thought it would be a nice addition to the base theme.
20
+
21
+ I really like Jekyll as it is simple to use, but also very powerful. I decided to make the most of the frontmatter and allow you to set most of the product information in there, leaving the main content of the page for the text description.
22
+
23
+ To get started, create your product pages inside a `_products` directory as we will make use of collections later on.
24
+
25
+ The below is an example of the frontmatter for the product page. The product page uses the same hero, title and subtitle settings as other pages, but has additional settings for product code, image, price, rating and features. The product code is important for later on.
26
+
27
+ ```yml
28
+ ---
29
+ title: Product 1 Name
30
+ subtitle: Product 1 tagline here
31
+ description: This is a product description
32
+ hero_image: /img/hero-img.jpg
33
+ product_code: ABC124
34
+ layout: product
35
+ image: https://via.placeholder.com/640x480
36
+ price: £1.99 + VAT
37
+ features:
38
+ - label: Great addition to any home
39
+ icon: fa-location-arrow
40
+ - label: Comes in a range of styles
41
+ icon: fa-grin-stars
42
+ - label: Available in multiple sizes
43
+ icon: fa-fighter-jet
44
+ rating: 3
45
+ ---
46
+ ```
47
+
48
+ The features provides a way of making a bullet point list of the key product features, but instead of plain disc bullet points you can use font awesome icons to make it a bit more interesting.
49
+
50
+ I don’t know about you, but sometimes I spend longer deciding on what icon to use than making the rest of the page.
51
+
52
+ I’ve deliberately made the product pages have a 4 by 3 image ratio as I feel it works best across different screen sizes. Like all themes, if you want to change it you can override the default layouts if you want a different ratio.
53
+
54
+ Once you have created your product pages, you will need to tell Jekyll to output them. This is done by adding collections settings in the `_config.yml` for your site.
55
+
56
+ ```yml
57
+ collections:
58
+ products:
59
+ output: true
60
+ layout: product
61
+ image: https://via.placeholder.com/800x600
62
+ show_sidebar: false
63
+ ```
64
+
65
+ Now when you run jekyll build it will output a load of product pages for you, now we just need a way of getting to them. This is where the product category page comes in.
66
+
67
+ ## Product Category
68
+
69
+ Create a page, such as products.md or in my case books.md and set it to use the product-category layout. This will generate a list of the products, but you can also add some introduction content in the main content section of the page if you so desire.
70
+
71
+ ```yml
72
+ ---
73
+ title: Products
74
+ subtitle: Check out our range of products
75
+ layout: product-category
76
+ show_sidebar: false
77
+ sort: title
78
+ ---
79
+
80
+
81
+ This is some page content and it will appear above the product list.
82
+ ```
83
+
84
+ ## Product Reviews
85
+
86
+ The last addition to the product pages is reviews. If you would like to list some customer reviews on your product pages, then you will need to create a reviews directory inside _data and create a separate file for each product with reviews, named after the product code. For example `_data/reviews/ABC124.yml`
87
+
88
+ The data file should follow the below format. The name is the customer name, the rating is how many stars out of 5, the title is the main title of the review and the avatar is a link to an image, if you have one. If you don’t have a customer image then just omit it and a user icon will be used instead. Lastly, the description is the main content of the review.
89
+
90
+ ```yml
91
+ - name: Mr E Xample
92
+ rating: 4
93
+ title: Great product, highly recommended
94
+ date: 01/01/2019
95
+ avatar: https://bulma.io/images/placeholders/128x128.png
96
+ description: >
97
+ The product worked really well. I would recommend this to most people to use. Delivery was quick and reasonable.
98
+ Would recommend this to my friends.
99
+ - name: Mrs R E View
100
+ rating: 5
101
+ title: Nice, really liked this
102
+ date: 02/02/2019
103
+ description: >
104
+ The product worked exactly as described.
105
+ ```
106
+
107
+ Example [product category and product pages](https://www.csrhymes.com/bulma-clean-theme/products/) can be seen on the theme’s demo site here if you want to take a look.
108
+
109
+ ## Landing Page Layout
110
+
111
+ I was thinking it would be good to create a landing style page so I could highlight a new project or something I was working on separately from the main projects page already on my site. Rather than create a new layout I thought it would be better to enhance the existing page layout so you could choose to use these features if you so desired.
112
+
113
+ I started by adding a call to action (otherwise known as a large button) in the hero at the top of the page. This can be used by adding hero_link and hero_link_text to the frontmatter.
114
+
115
+ ```yml
116
+ ---
117
+ layout: page
118
+ title: Example Landing Page
119
+ subtitle: This is an example landing page with callouts
120
+ hero_height: is-large
121
+ hero_link: /page-1/
122
+ hero_link_text: Example Call To Action
123
+ ---
124
+ ```
125
+
126
+ Next, I wanted to make some nice callouts to help shout about key features of whatever you are talking about on your landing page. This started out as a simple icon and a title, but slowly evolved to allow for a subtitle, description text and a call to action button as well.
127
+
128
+ To make it more flexible, only the title and subtitle are required and the rest can be used as and when necessary.
129
+
130
+ To make the callouts reusable in different pages on your site, the content is defined in a datafile, for example, example_callouts.yml. The below shows the example structure for the callouts.
131
+
132
+ ```yml
133
+ style: is-light
134
+ items:
135
+ - title: Example callout 1
136
+ subtitle: Example subtitle 1
137
+ icon: fa-space-shuttle
138
+ description: >
139
+ The example description text goes here and can be multiple lines.
140
+
141
+ For example, such as this.
142
+ call_to_action_name: Call to action 1
143
+ call_to_action_link: /page-1/
144
+ ```
145
+
146
+ The style is the style of the hero that the callouts are contained in. This makes use of Bulma hero styles.
147
+
148
+ Then to display the callouts on the page, add a callouts setting to the pages frontmatter with the name of the data file without the extension.
149
+
150
+ ```yml
151
+ ---
152
+ layout: page
153
+ title: Example Landing Page
154
+ subtitle: This is an example landing page
155
+ callouts: example_callouts
156
+ ---
157
+ ```
158
+
159
+ An example [landing page layout](https://www.csrhymes.com/bulma-clean-theme/landing/) can be seen in the theme’s demo site.
160
+
161
+ ## What do you think?
162
+
163
+ I’ve tried to make these additions easy to use and flexible where possible. I’ve updated the readme file and the theme demo site with more information to help you get started with these new features.
164
+
165
+ If you decide to give the theme a go, it would be great to see how you are using it and if you have any ideas of how it can be developed further. You never know, if I get enough responses then I may even make a showcase page on the demo theme site to highlight how others are using it.
data/favicon.png ADDED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-04 00:00:00.000000000 Z
11
+ date: 2019-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -166,15 +166,16 @@ files:
166
166
  - _layouts/post.html
167
167
  - _layouts/product-category.html
168
168
  - _layouts/product.html
169
- - _posts/2018-10-11-test3.md
170
- - _posts/2018-10-12-test2.md
171
- - _posts/2018-10-13-test.md
169
+ - _posts/2018-05-28-why-use-a-static-site-generator.markdown
170
+ - _posts/2019-02-09-getting-started-with-bulma-clean-theme.markdown
171
+ - _posts/2019-07-23-introducing-some-new-layouts-to-bulma-clean-theme.markdown
172
172
  - _sass/_layout.scss
173
173
  - _sass/_main.scss
174
174
  - _sass/syntax.scss
175
175
  - assets/css/app.scss
176
176
  - assets/js/app.js
177
177
  - blog/index.html
178
+ - favicon.png
178
179
  - node_modules/.yarn-integrity
179
180
  - node_modules/bulma/CHANGELOG.md
180
181
  - node_modules/bulma/LICENSE
@@ -1,30 +0,0 @@
1
- ---
2
- title: Test Post 1
3
- subtitle: Test post subtitle
4
- layout: post
5
- author: C.S. Rhymes
6
- ---
7
-
8
- This is a test post! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sollicitudin ultrices eros id accumsan. Vestibulum dictum volutpat sapien in molestie. Nunc auctor felis quis nibh tincidunt, vel sodales dolor viverra. Donec elementum dolor nisl, nec imperdiet sapien semper in.
9
-
10
- Integer ligula magna, vulputate in arcu vel, auctor aliquet enim. Interdum et malesuada fames ac ante ipsum primis in faucibus. In hendrerit commodo ex, in blandit est iaculis id.
11
-
12
- Suspendisse potenti. Vivamus vitae felis placerat, consectetur tellus sed, consequat nulla. Sed id semper nulla. Nunc dui ligula, consequat id eleifend non, iaculis ut ex. Aenean fringilla convallis placerat. Aenean pulvinar accumsan magna, molestie aliquet nunc ornare nec. Sed commodo, turpis eget dapibus auctor, metus tellus eleifend quam, ut aliquet libero ligula id erat. Curabitur quis quam sed nibh efficitur vulputate. Vivamus fringilla quam non augue dictum dictum. Praesent semper dolor et vehicula sagittis. Pellentesque ornare, est non fringilla consequat, quam felis cursus neque, nec vulputate purus nisl et elit.
13
-
14
- ```
15
- <?php
16
-
17
- echo 'This is an example of some code';
18
-
19
- $example = [
20
- 'This',
21
- 'is',
22
- 'an'
23
- 'array',
24
- ];
25
-
26
- $test = 'This is an example of some code with a really long value to see how it displays on the page to see if a scroll bar appears on the page in the code block as it should';
27
-
28
- ```
29
-
30
- Integer ligula magna, vulputate in arcu vel, auctor aliquet enim. Interdum et malesuada fames ac ante ipsum primis in faucibus. In hendrerit commodo ex, in blandit est iaculis id.
@@ -1,17 +0,0 @@
1
- ---
2
- title: Test Post 2
3
- subtitle: Test post subtitle
4
- layout: post
5
- author: C.S. Rhymes
6
- tags: html JavaScript CSS Jekyll
7
- ---
8
-
9
- This is a test post! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sollicitudin ultrices eros id accumsan. Vestibulum dictum volutpat sapien in molestie. Nunc auctor felis quis nibh tincidunt, vel sodales dolor viverra. Donec elementum dolor nisl, nec imperdiet sapien semper in.
10
-
11
- ## Heading 2
12
-
13
- Integer ligula magna, vulputate in arcu vel, auctor aliquet enim. Interdum et malesuada fames ac ante ipsum primis in faucibus. In hendrerit commodo ex, in blandit est iaculis id.
14
-
15
- ### Heading 3
16
-
17
- Suspendisse potenti. Vivamus vitae felis placerat, consectetur tellus sed, consequat nulla. Sed id semper nulla. Nunc dui ligula, consequat id eleifend non, iaculis ut ex. Aenean fringilla convallis placerat. Aenean pulvinar accumsan magna, molestie aliquet nunc ornare nec. Sed commodo, turpis eget dapibus auctor, metus tellus eleifend quam, ut aliquet libero ligula id erat. Curabitur quis quam sed nibh efficitur vulputate. Vivamus fringilla quam non augue dictum dictum. Praesent semper dolor et vehicula sagittis. Pellentesque ornare, est non fringilla consequat, quam felis cursus neque, nec vulputate purus nisl et elit.
@@ -1,17 +0,0 @@
1
- ---
2
- title: Test Post 3
3
- subtitle: Test post subtitle
4
- layout: post
5
- author: C.S. Rhymes
6
- tags: html JavaScript CSS Jekyll
7
- ---
8
-
9
- This is a test post! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sollicitudin ultrices eros id accumsan. Vestibulum dictum volutpat sapien in molestie. Nunc auctor felis quis nibh tincidunt, vel sodales dolor viverra. Donec elementum dolor nisl, nec imperdiet sapien semper in.
10
-
11
- ## Heading 2
12
-
13
- Integer ligula magna, vulputate in arcu vel, auctor aliquet enim. Interdum et malesuada fames ac ante ipsum primis in faucibus. In hendrerit commodo ex, in blandit est iaculis id.
14
-
15
- ### Heading 3
16
-
17
- Suspendisse potenti. Vivamus vitae felis placerat, consectetur tellus sed, consequat nulla. Sed id semper nulla. Nunc dui ligula, consequat id eleifend non, iaculis ut ex. Aenean fringilla convallis placerat. Aenean pulvinar accumsan magna, molestie aliquet nunc ornare nec. Sed commodo, turpis eget dapibus auctor, metus tellus eleifend quam, ut aliquet libero ligula id erat. Curabitur quis quam sed nibh efficitur vulputate. Vivamus fringilla quam non augue dictum dictum. Praesent semper dolor et vehicula sagittis. Pellentesque ornare, est non fringilla consequat, quam felis cursus neque, nec vulputate purus nisl et elit.