Last active
October 5, 2015 23:59
-
-
Save zckly/e35fc9b6ca852aa3ce6b to your computer and use it in GitHub Desktop.
for my Meteor yelp clone tutorial
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
<template name="app"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Welp</title> | |
</head> | |
<body> | |
<div class="main-header main-content-wrap js-main-header is-searching"> | |
<div class="content-container clearfix"> | |
<div class="arrange arrange--18 arrange--middle"> | |
<div class="arrange_unit nowrap"> | |
<h2 class="main-header_title"><span>Welp</span></h2> | |
</div> | |
<div class="arrange_unit arrange_unit--fill align-middle main-header--full_arrange_unit"> | |
<div class="main-header_search responsive-hidden-medium-only"> | |
<form class="main-search yform yform-inline"> | |
<div class="pseudo-input"> | |
<span class="pseudo-input_text">Find</span> | |
<span class="pseudo-input_field-holder"> | |
<input placeholder="tacos, cheap dinner, Max’s" value="" class="pseudo-input_field" type="text"> | |
</span> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment