Skip to content

Latest commit

 

History

History
141 lines (128 loc) · 5.48 KB

index.md

File metadata and controls

141 lines (128 loc) · 5.48 KB
layout show-avatar title subtitle use-site-title bigimg css
page
true
Hola.!
Mi nombre es Richard Palacios y soy Desarrollador de Software
true
/img/first-big-image-unsplash.jpg
Foto por Neonbrand en Unsplash.com
/css/extend-home.css

Trabajo reciente

{%- assign gh-user = "rpalaciosg"-%} {%- assign gh-project = "rpalaciosg.github.io" -%}

Este sitio Web.


Github Github
{%- assign gh-project = "vagrant-javaee-wildfly" -%}

Este proyecto ofrece una configuración básica de Vagrant para un entorno de desarrollo JavaEE y Servidor de Aplicaciones Wildfly.


Github Github
{%- assign gh-project = "ProgramingTips" -%}

Aplicación que muestra consejos o recordatorios de diferentes tecnologías, bibliotecas y lenguajes de programación y se puede agregar como extension de Google chrome.


Github Github

Desde el blog

{% for post in site.posts limit:3 %}

{{ post.title }}

  {% if post.subtitle %}
  <h4 class="post-subtitle">
    {{ post.subtitle }}
  </h4>
  {% endif %}
</a>

<p class="post-meta">
  Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>

<div class="post-entry-container">
  {% if post.image %}
  <div class="post-image">
    <a href="{{ post.url | prepend: site.baseurl }}">
      <img src="{{ post.image }}">
    </a>
  </div>
  {% endif %}
  <div class="post-entry">
    {{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
    {% assign excerpt_word_count = post.excerpt | number_of_words %}
    {% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
      <a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a>
    {% endif %}
  </div>
</div>

{% if post.tags.size > 0 %}
<div class="blog-tags">
  Tags:
  {% if site.link-tags %}
  {% for tag in post.tags %}
  <a href="{{ site.baseurl }}/tags#{{ tag }}">{{ tag }}</a>
  {% endfor %}
  {% else %}
    {{ post.tags | join: ", " }}
  {% endif %}
</div>
{% endif %}
{% endfor %}