|
19 | 19 | <div class="row"> |
20 | 20 | <div class="col-sm-8"> |
21 | 21 | <div class="timeline"> |
22 | | - <#assign count = 0> |
23 | | - <#list podcasts as post> |
24 | | - <div class="blg-summary"> |
| 22 | + <#list podcasts as post> |
| 23 | + <div class="blg-summary podcast" data-golive='${post.date?long?c}'> |
25 | 24 | <h3 style="line-height: 1.5;"><a href="${post.uri}"><span class="label label-success">Episode ${post.episode}</span> ${post.subtype?cap_first}: <#escape x as x?xml>${post.title}</#escape></a></h3> |
26 | | - <h4 class="text-muted blg-description"><#escape x as x?xml>${post.description}</#escape></h4> |
| 25 | + <h4 class="text-muted blg-description future-show">Episode coming soon! Subscribe to listen live..</h4> |
| 26 | + <h4 class="text-muted blg-description future-hide"><#escape x as x?xml>${post.description}</#escape></h4> |
27 | 27 | <div class="timeline-info hidden-xs"> |
28 | | - <img src="/img/${post.icon}" class="blg-author" alt="${post.author}"> |
| 28 | + <img src="/img/coming-soon.png" class="blg-author future-show" alt="Coming soon"> |
| 29 | + <img src="/img/${post.icon}" class="blg-author future-hide" alt="${post.author}"> |
29 | 30 | </div> |
30 | 31 | <ul class="text-muted list-inline blg-header"> |
31 | 32 | <li><i class="fa fa-info-circle"></i> ${post.subtype}</li> |
32 | 33 | <li><i class="fa fa-calendar"></i> ${post.date?string("dd MMMM yyyy")} </li> |
33 | 34 | <!--<li><i class="fa fa-comments-o"></i> 21 comments</li> --> |
34 | 35 | </ul> |
35 | | - <hr> |
36 | | - <#if post.image??> |
37 | | - <a href="${post.uri}"><img src="${post.image}" class="podcast-thumb-img"></a> |
38 | | - </#if> |
39 | | - <p class="blg-text"> |
40 | | - <#assign post_intro = post.body?split("<!-- end-archive-description -->")[0]> |
41 | | - <#assign MAX = 150> |
42 | | - <#assign words = post_intro?word_list> |
43 | | - <#if words?size gt 150 > |
44 | | - <#assign body = words[0..MAX-1]?join(' ') > |
45 | | - ${body} .. (<a href="${post.uri}">click here to read more</a>) |
46 | | - <#else> |
47 | | - <#assign body = words?join(' ') > |
48 | | - ${body} |
49 | | - </#if> |
| 36 | + <div class="future-hide"> |
| 37 | + <hr> |
| 38 | + <#if post.image??> |
| 39 | + <a href="${post.uri}"><img src="${post.image}" class="podcast-thumb-img"></a> |
| 40 | + </#if> |
| 41 | + <p class="blg-text"> |
| 42 | + <#assign post_intro = post.body?split("<!-- end-archive-description -->")[0]> |
| 43 | + <#assign MAX = 150> |
| 44 | + <#assign words = post_intro?word_list> |
| 45 | + <#if words?size gt 150 > |
| 46 | + <#assign body = words[0..MAX-1]?join(' ') > |
| 47 | + ${body} .. (<a href="${post.uri}">click here to read more</a>) |
| 48 | + <#else> |
| 49 | + <#assign body = words?join(' ') > |
| 50 | + ${body} |
| 51 | + </#if> |
50 | 52 |
|
51 | | - </p> |
| 53 | + </p> |
| 54 | + </div> |
52 | 55 |
|
53 | 56 | </div> |
54 | 57 | </#list> |
|
0 commit comments