Skip to content

james2doyle/pyro-blurb-field

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyro-blurb-field

Create small sections with title, image, and body content.

blurb field creation

blurb field on page form

Features

  • Pre-set the number of blurbs/items you want
  • Choose the folder for the image dropdown
  • Add a title, image and body for each item
  • Looping tags to output data
  • Includes 0 => None option to allow no image to be set
  • Parse the body with Markdown

Usage

{{ my_field_slug }}
<fieldset id="item{{ id }}">
  <legend>{{ title }}</legend>
  <!-- check and see if the image id is not set to 0 which is none -->
  {{ if image !== 0 }}
  <img src="{{ files:image_url id=image }}">
  {{ endif }}
  <!-- if use_markdown is checked we get html here -->
  {{ body }}
  <!-- output the url we used -->
  <a href="{{ link }}">READ MORE</a>
</fieldset>
{{ /my_field_slug }}

If there was 3 items, this would output:

<fieldset id="item1">
  <legend>Item1</legend>
  <img src="http://website.com/files/large/crazyid.jpg">
  <p>Body Content for 1</p>
  <a href="http://example.com">READ MORE</a>
</fieldset>
<fieldset id="item2">
  <legend>Item2</legend>
  <img src="http://website.com/files/large/crazyid.jpg">
  <p>Body Content for 2</p>
  <a href="http://example.com">READ MORE</a>
</fieldset>
<fieldset id="item3">
  <legend>Item3</legend>
  <img src="http://website.com/files/large/crazyid.jpg">
  <p>Body Content for 3</p>
  <a href="http://example.com">READ MORE</a>
</fieldset>

To Do

  • Add sorting/ordering

License

(The MIT License)

Copyright (c) 2014 James Doyle james2doyle@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Create small components with Title, Image and Body sections.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published