all repos — h3rald @ 1722a261d4e8105b14313d72496243bca42bfd16

The sources of https://h3rald.com

content/home.textile

 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
----- 
permalink: home
filters_pre: 
- erb
- redcloth
title: Home
type: page
feed: '/'
feed_title: 'Latest Articles'
-----
<%
max_items = 5

all_articles = latest_articles.length
latest = latest_articles 5
popular = popular_articles 5
all_projects = @items.select{|a| a[:type] == 'project'}.length
%>
!>/images/theme/heraldry/lion.png!

<span class="dropcap">Y</span>ou have reached Fabio Cevasco's web site. 

I am a full-time technical writer living and working in Genoa, Italy. In my free time, I enjoy reading and writing about IT-related topics and programming in different programming language, especially "Ruby":http://www.ruby-lang.org. This web site is a collection of my works, both in writing and coding, and it currently features *<%= all_articles %>* "articles":/archives/ and *<%= all_projects %>*  "projects":/projects/. 

My articles cover a wide range of topics, ranging from "Ruby programming":/tags/ruby/ to "software and book reviews":/tags/reviews/, "web development":/tags/webdevelopment/ and even "travelling":/tags/travelling. This web site does not have a main theme, therefore if you want to keep up-to-date about a particular topic, simply subscribe to a specific tag feed. 

You can contact me by writing an email to _h3rald [at] h3rald [dot] com_, or through "Twitter":http://www.twitter.com/h3rald, "LinkedIn":http://www.linkedin.com/pub/dir/Fabio/Cevasco, "Delicious":http://www.delicious.com/h3rald, "Facebook":http://www.facebook.com/h3rald, "Shelfari":http://www.shelfari.com/h3rald, or "FriendFeed":http://friendfeed.com/h3rald.

<br style="clear:both" />

<div class="article-list left-column" id="latest-articles">
h3. Latest Articles

<%
latest.each do |a|
%>
<%= render 'article_item', :article => a %>
<% end %>
</div> 
<div class="article-list right-column" id="popular-articles">
h3. Popular Articles

<%
popular.each do |a|
%>
<%= render 'article_item', :article => a %>
<% end %> 
</div>
<div class="clearleft"></div>