Skip to content

Instantly share code, notes, and snippets.

@GuillaumeDievart
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GuillaumeDievart/364bbaa8469b8c9ab4c4 to your computer and use it in GitHub Desktop.
Save GuillaumeDievart/364bbaa8469b8c9ab4c4 to your computer and use it in GitHub Desktop.
Xyl fragment
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns="http://hoa-project.net/xyl/xylophone">
<snippet id="default">
<p>default</p>
</snippet>
<snippet id="event">
<p>event</p>
</snippet>
<snippet id="learn">
<p>learn</p>
</snippet>
<snippet id="library">
<p>library</p>
</snippet>
</fragment>
<?xml version="1.0" encoding="utf-8"?>
<?xyl-fragment href="hoa://Application/View/Shared/Search/Result.xyl" as="search.result"?>
<overlay xmlns="http://hoa-project.net/xyl/xylophone">
<yield id="yContent">
<h1>Search</h1>
<div class="download-box">
<form novalidate="client" action="#" method="post" id="form_search" enctype="application/x-www-form-urlencoded">
<input type="text" name="query" />
<input type="submit" value="Search" />
</form>
</div>
<ul>
<li bind="?results">
<a href="results_(?url)" >
<value bind="?title" />
<yield select="?f:search.result#(?type)" />
</a>
</li>
</ul>
</yield>
</overlay>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment