Skip to content

Commit

Permalink
added public projects
Browse files Browse the repository at this point in the history
  • Loading branch information
aledalgrande committed Apr 13, 2011
1 parent aaaac7f commit b1e1a35
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 9 deletions.
13 changes: 8 additions & 5 deletions app/controllers/home_controller.rb
Expand Up @@ -7,17 +7,20 @@ def index
:pair => 'Pair Programming',
:jquery => 'jQuery',
:tdd => 'TDD',
:html => 'HTML',
:css => 'CSS',
:html => 'HTML 4/5',
:css => 'CSS 2/3',
:sass => 'Sass',
:haml => 'Haml',
:ci => 'Continuous Integration',
:agile => 'Agile',
:memcache => 'Memcache',
:sinatra => 'Sinatra',
:cucumber => 'Cucumber',
:mac => 'Mac',
:linux => 'Linux',
:php => 'PHP 5.2.x/5.3.x',
:phpagi => 'PHPAgi',
:java => 'Java 5/6',
:mac => 'Mac',
:linux => 'Linux' }
:java => 'Java 5/6' }
end

end
30 changes: 26 additions & 4 deletions app/views/home/index.html.erb
Expand Up @@ -45,7 +45,7 @@
<div id="industries" class="clearfix">
<h2>Industries of expertise</h2>
<ul>
<% %w(eCommerce Telephony Social).each do |name| %>
<% %w(eCommerce Telephony Social Media).each do |name| %>
<li>
<%= image_tag "#{name}.jpg", :title => name %>
<p>
Expand All @@ -56,10 +56,32 @@
</ul>
</div>
<div id="portfolio" class="clearfix">
<h2 class="clearfix">Portfolio examples</h2>
<h2 class="clearfix">Public projects and Contributions</h2>
<ul>
<li>portfolio 1</li>
<li>portfolio 2</li>
<li>
<span class="important">BFT</span> a business to business product configurator (done for Develon) -
<%= link_to truncate('http://www.bft.co.uk/jsp/en/categorie/index.jsp', :length => 42), 'http://www.bft.co.uk/jsp/en/categorie/index.jsp', :target => 'blank' %>
</li>
<li>
<span class="important">segmented-memcache</span> fork of the memcache lib to include segmentation of big chunks -
<%= link_to truncate('http://github.com/develon/segmented-memcache', :length => 21), 'http://github.com/develon/segmented-memcache', :target => 'blank' %>
</li>
<li>
<span class="important">validates_as_vat_number</span> VAT validator using the European VIES system -
<%= link_to truncate('http://github.com/develon/validates_as_vat_number', :length => 32), 'http://github.com/develon/validates_as_vat_number', :target => 'blank' %>
</li>
<li>
<span class="important">mongo-twitter-streaming</span> test Sinatra and Twitter project -
<%= link_to truncate('http://github.com/aledalgrande/mongo-twitter-streaming', :length => 48), 'http://github.com/aledalgrande/mongo-twitter-streaming', :target => 'blank' %>
</li>
<li>
<span class="important">fancy-a-cake</span> example job request app -
<%= link_to truncate('http://github.com/aledalgrande/fancy-a-cake', :length => 48), 'http://github.com/aledalgrande/fancy-a-cake', :target => 'blank' %>
</li>
<li>
<span class="important">cuke4php</span> bridge between PHP and Cucumber -
<%= link_to truncate('http://github.com/aledalgrande/cuke4php', :length => 48), 'http://github.com/aledalgrande/cuke4php', :target => 'blank' %>
</li>
</ul>
</div>
<div id="contacts" class="clearfix">
Expand Down
2 changes: 2 additions & 0 deletions public/stylesheets/main.css
Expand Up @@ -26,4 +26,6 @@
#wrapper #details #content #competencies ul li p, #wrapper #details #content #industries ul li p { margin-top: 12px; }
#wrapper #details #content #competencies h2, #wrapper #details #content #industries h2 { font-size: 24px; line-height: 36px; font-weight: bold; margin-top: 30px; color: black; text-shadow: 1px 1px 0px #B05252; }
#wrapper #details #content #portfolio h2, #wrapper #details #content #contacts h2 { font-size: 24px; line-height: 36px; font-weight: bold; margin-top: 30px; color: black; text-shadow: 1px 1px 0px #B05252; }
#wrapper #details #content #portfolio ul li span.important, #wrapper #details #content #contacts ul li span.important { text-shadow: 1px 1px 0px #B05252; font-weight: bold; color: black; font-size: 19px; }
#wrapper #details #content #portfolio ul li a, #wrapper #details #content #contacts ul li a { font-weight: bold; text-decoration: underline; color: #f7ede3; }
#wrapper #details #content #footer { text-align: center; margin-top: 50px; }
15 changes: 15 additions & 0 deletions public/stylesheets/main.scss
Expand Up @@ -141,6 +141,21 @@ $basic_size: 18px;
color: $black;
text-shadow: 1px 1px 0px #B05252;
}
ul {
li {
span.important {
text-shadow: 1px 1px 0px #B05252;
font-weight: bold;
color: $black;
font-size: $basic_size + 1;
}
a {
font-weight: bold;
text-decoration: underline;
color: $bright;
}
}
}
}
#footer {
text-align: center;
Expand Down

0 comments on commit b1e1a35

Please sign in to comment.