Created
October 6, 2011 17:17
-
-
Save jdlich/1267998 to your computer and use it in GitHub Desktop.
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
<portlet:renderURL var="newsUrl"> | |
<portlet:param name="action" value="sportNews"/> | |
<portlet:param name="sport" value="${ sport.name }"/> | |
</portlet:renderURL> | |
<portlet:renderURL var="scoresUrl"> | |
<portlet:param name="action" value="sportScores"/> | |
<portlet:param name="sport" value="${ sport.name }"/> | |
</portlet:renderURL> | |
<div data-role="controlgroup" data-type="horizontal" class="ui-btn-right" style="margin: 0;"> | |
<a data-role="button" href="${ scoresUrl }">Scores</a> | |
<a class="ui-btn-down-a" data-role="button" href="${ newsUrl }">News</a> | |
</div> |
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
<portlet:renderURL var="newsUrl"> | |
<portlet:param name="action" value="sportNews"/> | |
<portlet:param name="sport" value="${ sport.name }"/> | |
</portlet:renderURL> | |
<portlet:renderURL var="scoresUrl"> | |
<portlet:param name="action" value="sportScores"/> | |
<portlet:param name="sport" value="${ sport.name }"/> | |
</portlet:renderURL> | |
<div data-role="controlgroup" data-type="horizontal" class="ui-btn-right" style="margin: 0;"> | |
<a class="ui-btn-down-a" data-role="button" href="${ scoresUrl }">Scores</a> | |
<a data-role="button" href="${ newsUrl }">News</a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment