This file contains hidden or 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
<koken:albums> | |
<li> | |
<strong>Albums:</strong> | |
<koken:loop> | |
<koken:link title="View {{ album.title }}"> | |
{{ album.title }} | |
</koken:link> | |
</koken:loop> | |
</li> | |
</koken:albums> |
This file contains hidden or 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
<koken:not empty="album.topics"> | |
<!-- has a topic so let's do this --> | |
<koken:topics> | |
<koken:loop> | |
{{ page.title }} | |
<!-- or... --> | |
{{ essay.title }} | |
</koken:loop> | |
</koken:topics> | |
<koken:else> |
This file contains hidden or 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
pulse.on( 'item', function(e) { | |
alert(e.data.is_last); | |
}); |
This file contains hidden or 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
@media only screen and (max-width: 767px) { | |
.cover_desc { display:none; } | |
} |
This file contains hidden or 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
pulse.on( 'transitionstart', function(e) { | |
var data = e.data, | |
date = $('.time'); | |
date.html( $K.formattedDate(data.published_on) ); | |
}); |
This file contains hidden or 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
.k-lens-essay figure img, | |
.k-lens-page figure img | |
{ | |
max-width:300px; | |
height:auto; | |
} |
This file contains hidden or 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
<nav id="main"> | |
<koken:navigation /> | |
</nav> | |
/* target it in css */ | |
<style> | |
#main ul li a { | |
/* targets the link inside the nav */ | |
} | |
</style> |
This file contains hidden or 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
body.k-lens-content aside section { | |
display:none; | |
} | |
/* or for a specific one */ | |
body.k-lens-content aside section:first-child { | |
display:none; | |
} |
This file contains hidden or 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
header.cover { | |
padding:0; | |
} |
This file contains hidden or 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
pulse.on( 'transitionstart', function(e) { | |
var data = e.data.parent; | |
console.log(data.title); | |
console.log($K.formattedDate(data.published_on)); | |
} |
NewerOlder