This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var transition = function($newEl) { | |
// the pageTitle var assumes your title tag is formatted as " Site Name|Page Name " | |
// i perfer to use this method, otherwise landing page body class will show empty | |
var pageTitle = document.title.split('|')[1].toLowerCase().replace(/ /g,"-"); | |
function updateBodyClass(){ | |
$('body').removeClass().addClass(pageTitle); | |
} | |
var $oldEl = this; // reference to the DOM element that is about to be replaced | |
$newEl.hide(); // hide the new content before it comes in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This will format python datetime as a string to be used within jinja conditionals for comparing current date to article date using pelican app. | |
1. Create a file named jinjaext.py | |
2. paste the following snippet | |
def convertdate(datetime, format='%a-%d-%m-%Y'): | |
return datetime.date().strftime(format) | |
3. Add the following line to your config file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#grid').mixitup({ | |
onMixLoad: function(){ | |
var hash = window.location.hash; | |
var noHash=hash.replace("#",""); | |
if(hash){ | |
$('#grid').mixitup('filter', noHash); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if article.productvariations %} | |
{% for category_groups in article.productvariations.split('|') %} | |
{% for category in category_groups.split('=') %} | |
{% if loop.first %} | |
<h1>{{ category }}</h1> | |
{% else %} | |
<ul> | |
{% for list in category.split(',') %} | |
{% set itemvalues = list.split(':') %} | |
<li>{{ itemvalues[0] }} costs {{itemvalues [1]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# What I am attempting to do is split each key value pair groups down into smaller key value pairs spliting each at specified characters i.e:("=" "," ":" "|" )..etc. the characters used are arbitrary | |
# Example: Markdown metadata looks like this. | |
Title: Demo Product | |
date: 9-19-2013 | |
productvariations: Sizes=Small:13.00,Med:33.00,Large:42.00|Colors=Red,Green,Blue | |
# We need to output the following as: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROJECTSITE=$(DROPBOX_DIR)/WEBSITE/PROJECT_site | |
PROJECTSTORE=$(DROPBOX_DIR)/WEBSITE/PROJECT_store | |
PROJECTSITE_OUTPUT=$(BASEDIR)/output/PROJECTsite | |
PROJECTSTORE_OUTPUT=$(BASEDIR)/output/PROJECTstore | |
SITECONFFILE=$(BASEDIR)/projectconf.py | |
STORECONFFILE=$(BASEDIR)/projectstoreconf.py | |
generate_site: | |
$(PELICAN) $(PROJECTSITE) -o $(PROJECTSITE_OUTPUT) -s $(SITECONFFILE) | |
generate_store: | |
$(PELICAN) $(PROJECTSTORE) -o $(PROJECTSTORE_OUTPUT) -s $(STORECONFFILE) |
NewerOlder