Created
December 9, 2011 01:44
-
-
Save vybs/1449726 to your computer and use it in GitHub Desktop.
add position
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
<div class="guided-edit"> | |
{>_close_action/} | |
{<closeText}{i18n_text_plain__close}{/closeText} | |
{?firstTaskTitleString} | |
<h1>{firstTaskTitleString|s}</h1> | |
{/firstTaskTitleString} | |
<form class="standard-form" id="{name}_id" name="{name}" method="{method}" action="{action}"> | |
<fieldset> | |
<legend>{i18n_text_plain__what_is_your_industry}</legend> | |
<ul> | |
<li> | |
{#industryChooser choose=i18n__text_plain__choose} | |
{>singleSelect/} | |
{/industryChooser} | |
</li> | |
</ul> | |
{>action_params/} | |
{<saveText}{i18n__text_plain__save}{/saveText} | |
{<skipText}{i18n__text_plain__skip}{/skipText} | |
{>_guided_edit_flow_hidden/} | |
</fieldset> | |
</form> | |
{>_guided_edit_flow/} | |
</div> |
@amlanc - this can be achieved parsing dust.js template with Node.JS in the server-side. After that you can send to the client-side the result. I could user Rhino for parsing too.
Check the section: Leaving JSPs in the dust, the fifth topic, Server side support.
http://engineering.linkedin.com/frontend/leaving-jsps-dust-moving-linkedin-dustjs-client-side-templates
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very interesting article over @linked in. How do you take care of SEO issues if your presentation is assembled at the browser?