Skip to content

Instantly share code, notes, and snippets.

@zacombs
zacombs / accordion.html
Created October 22, 2019 13:57
Pharmacy Drupal - Accordion HTML for Bootstrap 3
<!--
Accordion HTML for Bootstrap 3
- To add additional tabs, copy the panel and place before the closing div (See comments below)
- Change all instances of "headingThree" and "collapseThree" to the desired number
- Add Title
- Add Content
-->
<div aria-multiselectable="true" class="panel-group" id="accordion" role="tablist">
<div class="panel panel-default">
@zacombs
zacombs / gist:33b2e5f8a2541652fb37963e43fbcee6
Created April 17, 2019 14:06
Bootstrap Example - BCDR
<div class="container">
<div class="row">
<div class="col-lg-4 py-1"><a href="https://bcdr.ukhc.org/wp-content/uploads/sites/49/2019/04/20190321-Master-Application-Ranking-Tiering-v3_7.pdf" target="_blank" rel="noopener noreferrer"><img class="alignleft size-full wp-image-487" src="https://bcdr.ukhc.org/wp-content/uploads/sites/49/2019/04/Button-4-7-Assigned-Application-Tier.png" alt="" width="191" height="56" /></a></div>
<div class="col-lg-4 py-1"><a href="https://bcdr.ukhc.org/wp-content/uploads/sites/49/2019/04/Master-Application-Tiering-Guidelines-v3-1.pdf" target="_blank" rel="noopener noreferrer"><img class="alignleft size-full wp-image-487" src="https://bcdr.ukhc.org/wp-content/uploads/sites/49/2019/04/Button-4-7-Tier-Assignment-Guidelines.png" alt="" width="191" height="56" /></a></div>
<div class="col-lg-4 py-1"><a href="https://bcdr.ukhc.org/wp-content/uploads/sites/49/2019/04/Master-Application-Tiering-Guidelines-v3-1.pdf" target="_blank" rel="noopener noreferrer"><img cla
@zacombs
zacombs / WP weather
Last active September 14, 2023 08:53
Display weather on WordPress site using Weather Map API and Wordpress Transients API
/**
* Place these functions in functions.php of your WordPress theme. Then call them anywhere on your site.
*
* Be sure to replace the API Key, you can get this free from: https://openweathermap.org/api
*
* Transients are stored in the DB in the wp_options table. More info about transients: https://codex.wordpress.org/Transients_API
*
*
* Get the current weather conditions for Zip Code 40391 using the Open Weather Map API.
*/