Last active
August 30, 2016 19:53
-
-
Save artchen/4a961c7ac9d6b9da188868c0f29a15d4 to your computer and use it in GitHub Desktop.
Universal Search Markup
This file contains 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
<!-- Search Form --> | |
<form id="searchform" class="searchform" name="searchform"> | |
<input type="text" class="search_input" /> | |
<button type="submit" class="search-button"> | |
<span class="icon icon-search"></span> | |
</button> | |
</form> | |
<!-- Search Result Modal --> | |
<div id="modal-search"> | |
<div class="modal"> | |
<header class="modal-header clearfix"> | |
<form id="modal-searchform" class="searchform" name="modal_searchform"> | |
<input type="text" class="search_input" /> | |
<button type="submit" class="search-button"> | |
<span class="icon icon-search"></span> | |
</button> | |
</form> | |
<a class="close"> | |
<span class="icon icon-close"></span> | |
</a> | |
</header> | |
<main class="modal-body"> | |
<ul class="results ajax-content" id="modal-search-results"> | |
<!-- The result list will fill in here --> | |
</ul> | |
</main> | |
<footer class="modal-footer ajax-content clearfix"> | |
<div class="meta"> | |
<strong class="range"></strong> of <strong class="total"></strong> | |
</div> | |
<div class="error"></div> | |
<a class="nav next"> | |
<span class="text">NEXT</span> | |
<span class="icon icon-chevron-right"></span> | |
</a> | |
<a class="nav prev"> | |
<span class="icon icon-chevron-left"></span> | |
<span class="text">PREV</span> | |
</a> | |
</footer> | |
</div> | |
<div class="overlay"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment