-
Notifications
You must be signed in to change notification settings - Fork 5
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
[Features] Social and categories changes #3
base: master
Are you sure you want to change the base?
[Features] Social and categories changes #3
Conversation
vx-charles
commented
Mar 21, 2018
•
edited by joaokamun
Loading
edited by joaokamun
- Add instagram template
- Add description and excerpt category
- Changed replaced link video Youtube
template_avancado/category.html
Outdated
|
||
{# Descri��o da categoria #} | ||
{% if category.excerpt is not empty %} | ||
<div style="margin: 10px 0px 0px;">{{ category.excerpt }}</div> |
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.
Evita usar css inline! Sempre que puder cria uma classe. Se for coisas genérica como margin-top, cria uma para isso. tipo .margin-top-10
<div style="margin: 10px 0px 0px;">{{ category.excerpt }}</div> | ||
{% endif %} | ||
{% if category.description is not empty %} | ||
<div style="margin: 10px 0px 30px;">{{ category.description }}</div> |
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.
Evita usar css inline! Sempre que puder cria uma classe. Se for coisas genérica como margin-top, cria uma para isso. tipo .margin-top-10
template_iniciante/category.html
Outdated
|
||
{# Descri��o da categoria #} | ||
{% if category.excerpt is not empty %} | ||
<div style="margin: 10px 0px 0px;">{{ category.excerpt }}</div> |
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.
Evita usar css inline! Sempre que puder cria uma classe. Se for coisas genérica como margin-top, cria uma para isso. tipo .margin-top-10
<div style="margin: 10px 0px 0px;">{{ category.excerpt }}</div> | ||
{% endif %} | ||
{% if category.description is not empty %} | ||
<div style="margin: 10px 0px 30px;">{{ category.description }}</div> |
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.
Evita usar css inline! Sempre que puder cria uma classe. Se for coisas genérica como margin-top, cria uma para isso. tipo .margin-top-10