-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mobile friendly index.hbs #54
base: master
Are you sure you want to change the base?
Conversation
views/index.hbs
Outdated
</li> | ||
</ul> | ||
</li> | ||
</ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should have one ul,
then the {{each}} inside it
<ul > | ||
{{#each posts}} | ||
<li class="{{background_color}} post-entry"> | ||
<p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why nest these two paragraphs inside an outer p? It's not necessary
<p class="dish-and-chef">{{dish}} by {{chef_name}}</p> | ||
<p class="post-date">Posted: {{formatDate date_published}}</p> | ||
</p> | ||
<article class="dish-article"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe the article tag should encompass the whole of the post, including title, date etc?
No description provided.