Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ lerna-debug.log*
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

service-account.json
3 changes: 2 additions & 1 deletion components/article-blog.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
<%= text %>
</p>
<div style="margin: 0;" valign="center">
<img class="author-img" src="<%= author.image %>"/> <span class="author-name"><%= author.name %></span>
<!-- <img class="author-img" src="<%= author.image %>"/> -->
<span class="author-name"><%= author.name %></span>
</div>
</td>
<td width="11">&nbsp;</td>
Expand Down
60 changes: 32 additions & 28 deletions components/article-default.ejs
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
<tr colspan="2">
<td colspan="2">
<table cellpadding="0" cellspacing="0" border="0" class="container">
<tr align="center">
<td align="left" style="margin: 0 0 0 11px;" valign="center">
<p class="section-date">
<%= moment(date).format('LL') %>
</p>
<h3 class="section-headline">
<a href="<%= url %>" class="section-headline" target="_blank" rel="noopener noreferrer" mc:edit>
<%= title %>
</a>
</h3>
<p class="section-text">
<%= text %>
</p>
</td>
<td width="11">&nbsp;</td>
<td align="right" width="80">
<!-- <div class="featured-img" style="background-image: url('<%= image %>');">&nbsp;</div> -->
<img class="section-img" src="<%= image %>" />
</td>
</tr>
<tr>
<td height="28">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<td colspan="2">
<table cellpadding="0" cellspacing="0" border="0" class="container">
<tr align="center">
<td align="left" style="margin: 0 0 0 11px" valign="center">
<% if (moment(date).isValid()) { %>
<p class="section-date"><%= moment(date).format('LL') %></p>
<% } %>
<h3 class="section-headline">
<a
href="<%= url %>"
class="section-headline"
target="_blank"
rel="noopener noreferrer"
mc:edit
>
<%= title %>
</a>
</h3>
<p class="section-text"><%= text %></p>
</td>
<td width="11">&nbsp;</td>
<td align="right" width="80">
<!-- <div class="featured-img" style="background-image: url('<%= image %>');">&nbsp;</div> -->
<img class="section-img" src="<%= image %>" />
</td>
</tr>
<tr>
<td height="28">&nbsp;</td>
</tr>
</table>
</td>
</tr>
2 changes: 1 addition & 1 deletion components/article-section.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<tr>
<td align="left" valign="top" width="320">
<h3 class="section-title">
Artigos
📚 Artigos
</h3>
<div width="320" height="5" style="background-color: #195C3C; height: 5px;">&nbsp;</div>
</td>
Expand Down
45 changes: 27 additions & 18 deletions components/jobs-section.ejs
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
<table width="640" cellpadding="0" cellspacing="0" border="0" class="wrapper" bgcolor="#FFFFFF">
<tr>
<td align="left" valign="top" width="320">
<h3 class="section-title">
Vagas
</h3>
<div width="320" height="5" style="background-color: #195C3C; height: 5px;">&nbsp;</div>
</td>
<td>
&nbsp;
</td>
</tr>
<tr>
<td height="28">&nbsp;</td>
</tr>
<!-- prettier-ignore -->
<% jobs.forEach((job) => { %>
<table
width="640"
cellpadding="0"
cellspacing="0"
border="0"
class="wrapper"
bgcolor="#FFFFFF"
>
<tr>
<td align="left" valign="top" width="320">
<h3 class="section-title">💼 Vagas</h3>
<div
width="320"
height="5"
style="background-color: #195c3c; height: 5px"
>
&nbsp;
</div>
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td height="28">&nbsp;</td>
</tr>
<!-- prettier-ignore -->
<% jobs.forEach((job) => { %>
<%- include('./job', { job }); %>
<% }); %>
</table>
</table>
Loading