Theology

Jonathan Morrow, Questioning the Bible: 11 Major Challenges to the Bible

Download the mp3
Published on 09/17/2014
An error occurred while processing the template.
The following has evaluated to null or missing:
==> categories  [in template "20101#20127#170246" at line 62, column 20]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if categories?seq_contains("Stand to...  [in template "20101#20127#170246" at line 62, column 15]
----
1<div class="row justify-content-center"> 
2  <article class="col-12 col-lg-9"> 
3 
4    ${Description.getData()} 
5 
6    <#if Topic??> 
7        <#if Topic.getSiblings()?has_content> 
8          <#-- getSiblings() seems to always return something from ?has_content (even if there are no siblings). --> 
9          <#-- Extra checking here to output items correctly. --> 
10          <#assign firstTopic = Topic.getSiblings()?first> 
11          <#if firstTopic.getData() != ""> 
12            <h2>Topics</h2> 
13            <ul> 
14              <#list Topic.getSiblings() as cur_Topic> 
15                <li>${htmlUtil.unescape(cur_Topic.getData())}</li> 
16              </#list> 
17            </ul> 
18          </#if> 
19        </#if> 
20    </#if> 
21 
22    <#if MentionedItem??> 
23        <#if MentionedItem.getSiblings()?has_content> 
24          <#-- getSiblings() seems to always return something from ?has_content (even if there are no siblings). --> 
25          <#-- Extra checking here to output items correctly. --> 
26          <#assign firstMentionedItem = MentionedItem.getSiblings()?first> 
27          <#if firstMentionedItem.getData() != ""> 
28            <h2>Mentioned on the Show</h2> 
29            <ul> 
30              <#list MentionedItem.getSiblings() as cur_MentionedItem> 
31                <li>${htmlUtil.unescape(cur_MentionedItem.getData())}</li> 
32              </#list> 
33            </ul> 
34          </#if> 
35        </#if> 
36    </#if> 
37 
38    <#if Link??> 
39        <#if Link.getSiblings()?has_content> 
40          <#-- getSiblings() seems to always return something from ?has_content (even if there are no siblings). --> 
41          <#-- Extra checking here to output items correctly. --> 
42          <#assign firstLink = Link.getSiblings()?first> 
43          <#if firstLink.getData() != ""> 
44            <h2>Related Links</h2> 
45            <ul> 
46              <#list Link.getSiblings() as cur_Link> 
47                <li>${htmlUtil.unescape(cur_Link.getData())}</li> 
48              </#list> 
49            </ul> 
50          </#if> 
51        </#if> 
52    </#if> 
53 
54    <#if Transcript?has_content && Transcript.getData()?? && Transcript.getData() != ""> 
55      <h2>Transcript</h2> 
56      ${Transcript.getData()} 
57    </#if> 
58 
59              <#if categories?seq_contains("Stand to Reason Weekly Audio")> 
60							  <br/><br/> 
61								<i>Transcripts are available on <a href='https://open.spotify.com/show/5LQuN1m1Kc8YaVn8o7lSIu'>Stand to Reason’s Spotify page</a>. Please note, you must be logged in to Spotify to view.</i> 
62              </#if> 
63 
64              <#if categories?seq_contains("#STRask")> 
65							  <br/><br/> 
66								<i>Transcripts are available on the <a href='https://open.spotify.com/show/1fpsOXG0sWkrn9BHSs1qUK'>#STRask Spotify page</a>. Please note, you must be logged in to Spotify to view.</i> 
67              </#if> 
68 
69 
70  </article> 
71</div> 

Related Assets