-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolaboradores.html
More file actions
66 lines (54 loc) · 1.84 KB
/
colaboradores.html
File metadata and controls
66 lines (54 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
layout: default
permalink: /colaboradores.html
---
<div class="content posts-grid hfeed">
{% for author in site.authors %}
{% if author[1].avatar != null and author[1].display_name !=null and author[1].title!=null and author[1].bio!=null %}
<article class="post-summary post type-post" >
<header class="entry-header">
{% if author[1].web != null %}
<a href="{{author[1].web}}" class="entry-link" title="{{author[1].display_name}}" rel="bookmark"></a>
{% else %}
<a href="#" class="entry-link" title="{{author[1].display_name}}" rel="bookmark"></a>
{% endif %}
{% if author[1].web != null %}
<a href="{{author[1].web}}" class="entry-link" title="{{author[1].display_name}}" rel="bookmark">
{% else %}
<a href="#" class="entry-link" title="{{author[1].display_name}}" rel="bookmark">
{% endif %}
<div class="post-image post-image-large">
<img class="wp-post-image image-fallback" width="600" height="330" src="/images/authors/{{author[1].avatar}}" alt="{{author[1].title}}">
</div>
<h4 class="card-name">{{author[1].display_name}} </h4>
</a>
<div class="entry-info">
<p><i> {{author[1].title}} </i></p>
</div>
</header>
<div class="entry-summary">
<p>
{{author[1].bio}}
</p>
</div>
</article>
{% endif %}
{% endfor %}
</div>
<style>
.post-image img {
border-radius: 50%!important;
max-width: 200px!important;
margin: 0 auto!important;
display: block!important;
}
.post-summary{
text-align: center!important;
}
.post-image-large{
overflow: inherit!important;
}
.article{
text-align: center!important;
}
</style>