Skip to content

Commit

Permalink
English as default language
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jan 4, 2016
1 parent fff40c5 commit 8327366
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assets/scss/components/pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
padding: 4px 10px 5px;
font-family: "Open Sans", sans-serif;
font-size: 1.1rem;
content: "Siguiente Publicación";
content: "READ THIS NEXT";
transition: all .5s ease;
text-transform: uppercase;
color: rgba(255, 255, 255, .8);
Expand Down
6 changes: 3 additions & 3 deletions default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
<div class="modal-dialog">
<div class="modal-content">
<header class="modal-header">
<h4 class="modal-title">Una vez a la semana, recibe lo último.</h4>
<a class="modal-close" data-dismiss="modal" aria-hidden="true" href="#"><span class="hidden">Cerrar</span></a>
<h4 class="modal-title">The latest content, once per week.</h4>
<a class="modal-close" data-dismiss="modal" aria-hidden="true" href="#"><span class="hidden">Close</span></a>
</header>
<div class="modal-body">
<form action="{{! populated via code injection}}" method="post">
<input id="fieldEmail" name="{{! populated via code injection}}" type="email" placeholder="Tu correo electrónico" required />
<button class="button-add wide" type="submit">Subscribirse</button>
<p><strong>Política de Privacidad:</strong> No spam ni publicidad. Desunscríbete en cualquier momento.</p>
<p><strong>Privacy policy:</strong> No spam. No jibber jabber. Unsubscribe any time.</p>
</form>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<p>{{excerpt words="55"}}&hellip;</p>
</section>
<footer class="more-links">
<a class="read-more button-save" href="{{url}}">Leer Más</a>
<a class="read-more button-save" href="{{url}}">Read More</a>
{{!> share/post}}
</footer>
</article>
Expand Down
6 changes: 3 additions & 3 deletions partials/pagination.hbs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<nav class="pagination" role="navigation">
{{#if prev}}
<a class="newer-posts" href="{{page_url prev}}">&larr; Publicaciones Recientes</a>
<a class="newer-posts" href="{{page_url prev}}">&larr; Newer Posts</a>
{{/if}}
<span class="page-number">Página {{page}} de {{pages}}</span>
<span class="page-number">Page {{page}} of {{pages}}</span>
{{#if next}}
<a class="older-posts" href="{{page_url next}}">Publicaciones Anteriores &rarr;</a>
<a class="older-posts" href="{{page_url next}}">Older Posts &rarr;</a>
{{/if}}
</nav>
2 changes: 1 addition & 1 deletion partials/widgets/subscribe-banner.hbs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<aside class="subscribe-banner">
¿Te gustaría recibir el contenido en tu correo mensualmente? &nbsp;<a class="button" data-toggle="modal" data-target="#blogsubscribe">Subscríbete</a>
Want to keep up to date weekly with more great posts? &nbsp;<a class="button" data-toggle="modal" data-target="#blogsubscribe">Subscribe</a>
</aside>
6 changes: 3 additions & 3 deletions post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

{{> post-header}}

<a class="post-meta" href="{{@blog.url}}">&larr; Volver a la Portada</a>
<a class="post-meta" href="{{@blog.url}}">&larr; Back to the front page</a>

<h1 class="post-title">{{{title}}}</h1>

<section class="post-meta">
<img class="author-img" src="{{author.image}}" alt="Author image" nopin="nopin" />
<span class="author-name">{{author}}</span>
on the
<time datetime="{{date format='YYYY-MM-DD'}}">{{date format="Do el MMMM YYYY"}}</time>
<time datetime="{{date format='YYYY-MM-DD'}}">{{date format="Do of MMMM YYYY"}}</time>
<span class="tags">{{tags prefix="" separator=" "}}</span>
</section>

Expand Down Expand Up @@ -45,7 +45,7 @@
{{/next_post}}
</section>

<a class="button-add large wide" data-toggle="modal" data-target="#blogsubscribe">Subscríbete y recíbelo en tu correo</a>
<a class="button-add large wide" data-toggle="modal" data-target="#blogsubscribe">Subscribe to Weekly Posts</a>

</footer>

Expand Down

0 comments on commit 8327366

Please sign in to comment.