Skip to content

Commit 5c24908

Browse files
Merge pull request #31 from vicentimartins/jobs
Atualizadas sessões Jobs e About
2 parents 76e4354 + 07f2f39 commit 5c24908

26 files changed

+84
-60
lines changed

_config.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ paginate_path: 'page:num'
1313
navigation:
1414
- text: início
1515
url: '/'
16-
#- text: encontro
17-
# url: '/encontro'
18-
#- text: vagas de emprego
19-
# url: '/vagas'
20-
#- text: hangouts
21-
# url: '/hangouts'
16+
- text: Sobre
17+
url: '/about'
18+
- text: Vagas em aberto
19+
url: '/jobs'
2220

2321
future: true
2422
show_drafts: true

_includes/cloud_tags.html

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
<div class="cloud-tags horizontal list">
2-
3-
{% for tag in site.tags %}
4-
<a href="/search.html?tags={{ tag | first | slugify }}" class="item">#{{ tag | first | upcase }}</a>
5-
{% endfor %}
6-
7-
</div>
1+
<div class="cloud-tags horizontal list">
2+
{% for tag in site.tags %}
3+
<a href="/search.html?tags={{ tag | first | slugify }}" class="item">#{{ tag | first | upcase }}</a>
4+
{% endfor %}
5+
</div>

about/index.markdown

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ Promover a interatividade entre pessoas interessadas na linguagem de programaç
1717

1818
## Parceiros
1919

20-
<a target="_blank" href="https://www.facebook.com/groups/paraibajs/384146891723494/"><img class="no-fancybox" src="http://php-pb.net/images/paraibajs_logo.png" alt="Mobile Dev"></a> &nbsp;
21-
<a target="_blank" href="https://www.facebook.com/groups/blackberrydevjampa/"><img class="no-fancybox" src="http://php-pb.net/images/mobile-dev.png" alt="Mobile Dev"></a>
22-
<br><br>
23-
<a target="_blank" href="http://gdgjp.org.br"><img class="no-fancybox" src="http://php-pb.net/images/gdg.png" alt="Mobile Dev"></a>
20+
[![Paraiba JS](/images/paraibajs_logo.png)](https://www.facebook.com/groups/paraibajs/384146891723494/)
21+
[![Mobile Dev](/images/mobile-dev.png)](https://www.facebook.com/groups/blackberrydevjampa/)
22+
[![PUG PB](/images/pug_logo2.png)](http://pb.python.org.br)
23+
<br /><br />
24+
[![GDG JP](/images/gdg.png)](http://gdgjp.org.br)

images/pug_logo2.png

5.85 KB
Loading

index.html

Lines changed: 47 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,58 @@
11
---
22
layout: default
3-
title: PHP-PB
3+
title: PHP-PB
44
---
55

66
<div class="posts list">
7-
{% for post in paginator.posts %}
8-
<div class="post item">
9-
<div class="info">
10-
<!-- <a href="/search.html?category={{post.categories | first | slugify | url_encode | escape }}" class="category">#{{ post.categories | first }}</a> -->
11-
<a href="{{ post.url }}" class="title">{{ post.title }}</a>
12-
</div>
13-
<div class="description preview">
14-
{{ post.excerpt | strip_html }}
15-
</div>
16-
<div class="meta">
17-
<div class="row">
18-
<div class="author"><i class="icon-user"></i> {{ post.author }}</div>
19-
<div class="date right"><i class="icon-calendar"></i> {{ post.date | date: "%-d/%m/%y" }}</div>
20-
</div>
21-
</div>
22-
</div>
23-
{% endfor %}
7+
{% for post in paginator.posts %}
8+
<div class="post item">
9+
<div class="info">
10+
<!-- <a href="/search.html?category={{post.categories | first | slugify | url_encode | escape }}" class="category">#{{ post.categories | first }}</a> -->
11+
<a href="{{ post.url }}" class="title">{{ post.title }}</a>
12+
</div>
13+
<div class="description preview">
14+
{{ post.excerpt | strip_html }}
15+
</div>
16+
<div class="meta">
17+
<div class="row">
18+
<div class="author">
19+
<i class="icon-user"></i> {{ post.author }}</div>
20+
<div class="date right">
21+
<i class="icon-calendar"></i> {{ post.date | date: "%-d/%m/%y" }}</div>
22+
</div>
23+
</div>
24+
</div>
25+
{% endfor %}
2426
</div>
2527

2628
{% if paginator.total_pages > 1 %}
2729
<div class="pagination horizontal list">
28-
<center>
29-
<div class="menu">
30-
{% if paginator.previous_page %}
31-
<a href="{{ paginator.previous_page_path }}" class="item"><i class="icon-left-open"></i></a>
32-
{% else %}
33-
<a class="item"><i class="icon-left-open"></i></a>
34-
{% endif %}
35-
36-
{% for page in (1..paginator.total_pages) %}
37-
{% if page == paginator.page %}
38-
<a class="item active">{{page}}</a>
39-
{% elsif page == 1 %}
40-
<a href="{{ '/index.html' }}" class="item">{{ page }}</a>
41-
{% else %}
42-
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="item">{{ page }}</a>
43-
{% endif %}
44-
{% endfor %}
45-
46-
{% if paginator.next_page %}
47-
<a href="{{ paginator.next_page_path }}" class="item"><i class="icon-right-open"></i></a>
48-
{% else %}
49-
<a class="item"><i class="icon-right-open"></i></a>
50-
{% endif %}
51-
</div>
52-
</center>
30+
<center>
31+
<div class="menu">
32+
{% if paginator.previous_page %}
33+
<a href="{{ paginator.previous_page_path }}" class="item">
34+
<i class="icon-left-open"></i>
35+
</a>
36+
{% else %}
37+
<a class="item">
38+
<i class="icon-left-open"></i>
39+
</a>
40+
{% endif %} {% for page in (1..paginator.total_pages) %} {% if page == paginator.page %}
41+
<a class="item active">{{page}}</a>
42+
{% elsif page == 1 %}
43+
<a href="{{ '/index.html' }}" class="item">{{ page }}</a>
44+
{% else %}
45+
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="item">{{ page }}</a>
46+
{% endif %} {% endfor %} {% if paginator.next_page %}
47+
<a href="{{ paginator.next_page_path }}" class="item">
48+
<i class="icon-right-open"></i>
49+
</a>
50+
{% else %}
51+
<a class="item">
52+
<i class="icon-right-open"></i>
53+
</a>
54+
{% endif %}
55+
</div>
56+
</center>
5357
</div>
5458
{% endif %}

jobs/index.markdown

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: post
3+
title: Vagas em Aberto
4+
---
5+
6+
### Como anunciar uma vaga?
7+
8+
Apenas acrescente nos comentários características do perfil do profissional
9+
que você precisa. No comentário informe tudo o que for possível sobre a vaga,
10+
algo como:
11+
12+
*** Perfil profissional:** Programador PHP com +2 anos de experiência
13+
14+
*** Requisitos:** Experiência com ferramenta 1, ferramenta 2...
15+
16+
*** Horário de trabalho:** Para o cargo serão exigidos 44 h semanais.
17+
18+
*** Outras informações:** Há disponibilidade de trabalho remoto...
19+
20+
Assim a comunicação ficará simples e os profissionais interessados entrarão em
21+
contato.
22+
23+
<br /><br /><br />
File renamed without changes.

0 commit comments

Comments
 (0)