This file contains hidden or 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
# файл models.py | |
from django.db import models | |
class Post(models.Model): | |
title = models.CharField(max_length=255) | |
content = models.TextField() | |
pub_date = models.DateTimeField(auto_now_add=True) |
This file contains hidden or 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
// clearfix | |
// пример: @include cfx; | |
=cfx | |
&:after | |
content: "." | |
display: block | |
height: 0 | |
clear: both | |
visibility: hidden |
This file contains hidden or 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
// clearfix | |
// пример: @include cfx; | |
@mixin cfx { | |
&:after { | |
content: "."; | |
display: block; | |
height: 0; | |
clear: both; | |
visibility: hidden; | |
} |
- Карта помогает выгрузить из головы все задачи
- Пройдитесь взглядом по всем разделам карты
- Если в голове “сидит” задача, то она обязательно всплывёт при взгляде на соответствующий узел
- Выписывайте задачи, пока их количество не достигнет 50
- Почувствуйте, как гора упала с ваших плеч :)
При составлении карты использовались материалы Максима Дорофеева, mnogosdelal.ru