Fixing author text
This commit is contained in:
parent
202a664600
commit
2edb490833
@ -10,6 +10,13 @@ body {
|
|||||||
height: 100%; }
|
height: 100%; }
|
||||||
body div#first-box.margin {
|
body div#first-box.margin {
|
||||||
margin-top: 60px; }
|
margin-top: 60px; }
|
||||||
|
body div.author-text {
|
||||||
|
font-size: 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: end; }
|
||||||
|
body div.padding-side {
|
||||||
|
padding-left: 1%;
|
||||||
|
padding-right: 1%; }
|
||||||
body div.padding {
|
body div.padding {
|
||||||
padding: 1%; }
|
padding: 1%; }
|
||||||
body div.title-image {
|
body div.title-image {
|
||||||
|
@ -17,6 +17,15 @@ body {
|
|||||||
div#first-box.margin {
|
div#first-box.margin {
|
||||||
margin-top: 60px;
|
margin-top: 60px;
|
||||||
}
|
}
|
||||||
|
div.author-text {
|
||||||
|
font-size: 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: end;
|
||||||
|
}
|
||||||
|
div.padding-side {
|
||||||
|
padding-left: 1%;
|
||||||
|
padding-right: 1%;
|
||||||
|
}
|
||||||
div.padding {
|
div.padding {
|
||||||
padding: 1%;
|
padding: 1%;
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
% }
|
% }
|
||||||
% my $user_agent = stash 'useragent';
|
% my $user_agent = stash 'useragent';
|
||||||
% if ($user_agent !~ /LinkedInBot/) {
|
% if ($user_agent !~ /LinkedInBot/) {
|
||||||
<div class="padding">
|
<div class="padding-side">
|
||||||
<%== $post->{content} %>
|
<%== $post->{content} %>
|
||||||
</div>
|
</div>
|
||||||
% } else {
|
% } else {
|
||||||
@ -38,7 +38,10 @@
|
|||||||
% }
|
% }
|
||||||
% my $date_article = DateTime::Format::ISO8601->parse_datetime($post->{date});
|
% my $date_article = DateTime::Format::ISO8601->parse_datetime($post->{date});
|
||||||
% $date_article->set_time_zone('Europe/Madrid');
|
% $date_article->set_time_zone('Europe/Madrid');
|
||||||
<div class="padding">
|
<div class="padding-side author-text">
|
||||||
<p>Escrito por <%= $post->{author} %> con fecha <%= $date_article %>.<p>
|
<span>Author: <b><%= $post->{author} %></b></span>
|
||||||
|
</div>
|
||||||
|
<div class="padding-side author-text">
|
||||||
|
<span>Fecha: <b><%= $date_article %></b>.<span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user