Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [minesite] <li> links.html template

Quote Reply
Re: [minesite] <li> links.html template In reply to
Right, but <%if category_id%> is going to be a null if statement if $category_id is not passed into links.html.

I tested this earlier by saying <%if category_id%><li><%else%>test<%endif%> and it printed test, of course, because $category_id is not declared.

<%link_results%> is not in your link.html though, so <%if link_results%> is an anomaly to links.html.

Anyway, it doesn't matter, I just solved my problem by placing this in links.html

Code:

<!--li-->


and I wrote this Andy-style global

Code:

'replace_li' => 'sub {
my $in = $_[0];
$in =~ s,<!--li-->,<li>,g;
return $in;
}',

<%replace_li($links)%>

So anytime I want the li to display, I can say <%replace_li($link_results)%> instead of <%link_results%> or whatever.

Thanks everyone anyway,

- Jonathan
Subject Author Views Date
Thread <li> links.html template jdgamble 10178 Sep 2, 2004, 4:15 PM
Thread Re: [jdgamble] <li> links.html template
minesite 10053 Sep 3, 2004, 3:04 AM
Thread Re: [minesite] <li> links.html template
Andy 10144 Sep 3, 2004, 3:24 AM
Thread Re: [Andy] <li> links.html template
jdgamble 10044 Sep 3, 2004, 2:51 PM
Thread Re: [jdgamble] <li> links.html template
minesite 10063 Sep 3, 2004, 3:45 PM
Thread Re: [minesite] <li> links.html template
jdgamble 10024 Sep 3, 2004, 4:37 PM
Thread Re: [jdgamble] <li> links.html template
minesite 10050 Sep 3, 2004, 4:56 PM
Thread Re: [minesite] <li> links.html template
jdgamble 10063 Sep 4, 2004, 2:09 AM
Thread Re: [jdgamble] <li> links.html template
minesite 10015 Sep 4, 2004, 2:48 AM
Thread Re: [minesite] <li> links.html template
jdgamble 10063 Sep 4, 2004, 3:04 PM
Post Post deleted by minesite
minesite 9985 Sep 4, 2004, 5:50 PM
Thread Re: [jdgamble] <li> links.html template
minesite 10003 Sep 4, 2004, 6:11 PM
Thread Re: [minesite] <li> links.html template
jdgamble 10043 Sep 4, 2004, 6:49 PM
Thread Re: [jdgamble] <li> links.html template
minesite 10011 Sep 4, 2004, 7:06 PM
Thread Re: [minesite] <li> links.html template
jdgamble 10033 Sep 4, 2004, 7:14 PM
Thread Re: [jdgamble] <li> links.html template
minesite 10015 Sep 4, 2004, 7:40 PM
Thread Re: [minesite] <li> links.html template
jdgamble 10001 Sep 5, 2004, 12:55 AM
Thread Re: [jdgamble] <li> links.html template
minesite 10042 Sep 5, 2004, 2:26 AM
Thread Re: [minesite] <li> links.html template
jdgamble 9941 Sep 5, 2004, 2:44 AM
Thread Re: [jdgamble] <li> links.html template
minesite 9948 Sep 5, 2004, 3:57 AM
Thread Re: [minesite] <li> links.html template
jdgamble 9983 Sep 5, 2004, 4:17 AM
Thread Re: [jdgamble] <li> links.html template
minesite 9966 Sep 5, 2004, 4:40 AM
Post Re: [minesite] <li> links.html template
jdgamble 9981 Sep 5, 2004, 4:49 AM
Post Post deleted by minesite
minesite 10006 Sep 4, 2004, 3:05 AM