forked from DjangoGirls/resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some pt_br translations, created a template for social media po…
…st thanking a sponsor
- Loading branch information
rsip22
committed
Jun 25, 2016
1 parent
a5dc018
commit f5e5b01
Showing
11 changed files
with
5,050 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
### Tags HTML | ||
|
||
* Parágrafo | ||
`<p>texto</p>` | ||
|
||
* Seu cabeçalho/título mais importante | ||
`<h1>Um cabeçalho</h1>` | ||
|
||
* Cabeçalho/título de segundo nível | ||
`<h2>Um cabeçalho secundário</h2>` | ||
|
||
* Cabeçalho/título de terceiro nível | ||
`<h3>Um cabeçalho nível abaixo</h3>`... e assim vai até `<h6>` | ||
|
||
* Ênfase no texto | ||
`<em>texto</em>` | ||
|
||
* Ênfase ainda maior no texto | ||
`<strong>texto</strong>` | ||
|
||
* Pular uma linha | ||
`<br/>` (você não pode colocar nada dentro dessa tag) | ||
|
||
* Criar um link | ||
`<a href="http://djangogirls.org/">link</a>` | ||
|
||
* Fazer uma lista | ||
`<ul> | ||
<li>first item</li> | ||
<li>second item</li> | ||
</ul>` | ||
|
||
* Definir uma seção da página | ||
`<div></div>` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
### Ativando virtualenv | ||
- Windows: | ||
`myvenv\Scripts\activate` | ||
- OSX / Linux: | ||
`source myvenv/bin/activate` | ||
(or `. myvenv/bin/activate`) | ||
|
||
### Comandos para gerenciar Django | ||
- Criando novas migrações: | ||
`python manage.py makemigrations blog` | ||
- Aplicar migrações: | ||
`python manage.py migrate blog` | ||
- Inicizalizar servidor web: | ||
`python manage.py runserver` | ||
- Abrir console Python do Django: | ||
`python manage.py shell`... | ||
- ...e sair dele: `>>> exit()` | ||
|
||
|
||
### Git | ||
- Ver quais arquivos você alterou e o que foi adicionado no Git: | ||
`git status` | ||
- Adicionar um arquivo: | ||
`git add <arquivo>` | ||
- Adicionar todos arquivos novos/modificados do diretório atual: | ||
`git add .` | ||
- Adicionar todos arquivos (novos/modificados e deletados) do diretório atual: | ||
`git add -A .` | ||
- Salvar as alterações no histórico de commits do Git: | ||
`git commit -m "mensagem"` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Olá <nome da organização>! | ||
|
||
Estamos muito felizes de anunciar o próximo workshop Django Girls em Porto Alegre. Essa oficina é organizada independentemente por <nome> e <nome> em parceria com <patrocinadores>. | ||
|
||
O quê? | ||
==== | ||
Assim como PyLadies e Rails Girls, Django Girls busca introduzir mulheres ao mundo da programação e esse workshop de um dia permite que elas construam seu primeiríssimo website com Django! | ||
|
||
Nosso site (com todas informações e link de inscrições): | ||
http://djangogirls.org/<cidade> | ||
|
||
Quando? | ||
==== | ||
<data> | ||
|
||
Onde? | ||
===== | ||
<local> | ||
|
||
Para quem? | ||
=== | ||
Esse workshop é voltado para mulheres sem experiência alguma em programação (mas se tiver conhecimento técnico, tudo bem!). Aceitamos inscrições de mulheres de Porto Alegre e de todo o estado. Esperamos, com a ajuda de patrocinadores, poder oferecer auxílio às que desejam participar mas não tem meios de vir a Porto Alegre. | ||
|
||
Inscrições | ||
===== | ||
As inscrições estão abertas, e continuarão abertas até <data>. | ||
|
||
Colabore | ||
============ | ||
Encorajamos e todas e todos para espalhar esse anúncio entre seus amigos e familiares, e compartilhar o amor pela tecnologia e programação com todas as mulheres que você conhece. Com união, podemos trazer mais diversidade à TI e emponderar mulheres para que busquem trabalho nessa área sem precisarem ter nenhum receio. | ||
|
||
Se você deseja colaborar, por favor, escreva para nós! Ficaremos muito felizes de ter voluntárias e voluntários para o dia do evento ou para ajudar a completar as mais diversas tarefas necessárias para que esse evento aconteça, desde fazendo promoção junto à mídia local até treinando as meninas durante o workshop! | ||
|
||
Obrigada! | ||
Django Girls <cidade> |
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