Skip to content

Commit

Permalink
welcome post
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Fuchs committed Jul 21, 2011
1 parent dfdcaa3 commit ef6ab37
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 14 deletions.
10 changes: 7 additions & 3 deletions 2011/first-post/index.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Travis CI: About - Welcome to Travis</title> <title>Travis CI: About - Welcome to Travis CI</title>
<link rel="stylesheet" type="text/css" href="/style.css" media="screen"> <link rel="stylesheet" type="text/css" href="/style.css" media="screen">
</head> </head>
<body> <body>
Expand All @@ -29,10 +29,14 @@ <h1 class="riddle"><a href="/" title="Travis">Travis CI</a></h1>
<div class="pad"> <div class="pad">
<div id="main"> <div id="main">


<h2>Welcome to Travis</h2> <h2>Welcome to Travis CI</h2>




<p>Hello, and <em>welcome</em> to the Travis blog!</p> <p>Travis CI is an open-source, distributed build system for the Ruby community.</p>

<p>We are going to blog more about it later but for now you can read up on the initial ideas on <a href="http://svenfuchs.com/2011/2/5/travis-a-distributed-build-server-tool-for-the-ruby-community">Sven’s blog</a> and flip through <a href="http://talk-2011-lyon.heroku.com">a presentation</a> that we gave at 3 conferences and 2 Ruby user groups this summer.</p>

<p>If you feel like this is a great project then jump into <a href="irc://travis#irc.freenode.net">#travis on irc.freenode.net</a> and say hi!</p>


</div><!-- /#main --> </div><!-- /#main -->
<div id="sidebar"> <div id="sidebar">
Expand Down
81 changes: 81 additions & 0 deletions 2011/welcome-to-travis/index.html
@@ -0,0 +1,81 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Travis CI: About - Welcome to Travis CI</title>
<link rel="stylesheet" type="text/css" href="/style.css" media="screen">
</head>
<body>
<div id="navigation">
<div class="wrapper">
<a href="http://travis-ci.org" id="logo">travis-ci<span>.org</span></a>
<ul>
<li><a href="/">Blog</a></li>
<li><a href="/docs">Docs</a></li>
<li class="right"><a href="http://travis-ci.org">go to travis-ci.org &rarr;</a></li>
</ul>
</div>
</div>

<div id="header">
<div class="wrapper">
<h1 class="riddle"><a href="/" title="Travis">Travis CI</a></h1>
<p>An open-source, distributed build system for the Ruby community.</p>
</div><!-- /.wrapper -->
</div><!-- /#header -->

<div id="content">
<div class="wrapper">
<div class="pad">
<div id="main">

<h2>Welcome to Travis CI</h2>


<p>Travis CI is an open-source, distributed build system for the Ruby community.</p>

<p>We are going to blog more about it later but for now you can read up on the initial ideas on <a href="http://svenfuchs.com/2011/2/5/travis-a-distributed-build-server-tool-for-the-ruby-community">Sven’s blog</a> and flip through <a href="http://talk-2011-lyon.heroku.com">a presentation</a> that we gave at 3 conferences and 2 Ruby user groups this summer.</p>

<p>If you feel like this is a great project then jump into <a href="irc://travis#irc.freenode.net">#travis on irc.freenode.net</a> and say hi!</p>

</div><!-- /#main -->
<div id="sidebar">
<h2>Contact</h2>
<ul>
<li><a href="http://github.com/travis-ci">Github</a></li>
<li><a href="http://twitter.com/travisci">Twitter</a></li>
<li><a href="irc://travis#irc.freenode.net">IRC</a></li>
<li><a href="http://groups.google.com/group/travis-ci">Mailinglist</a></li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a href="#">Getting started</a></li>
<li><a href="#">Build configuration</a></li>
</ul>
<h2>Under construction</h2>
<ul>
<li><p>Our site is still under construction. You can help us in: travis#irc.freenode.net</p></li>
</ul>
</div><!-- /#sidebar -->
</div><!-- /.pad -->
</div><!-- /.wrapper -->
</div><!-- /#content -->

<div id="footer">
<div class="wrapper">
<div class="box">
<p>This site is maintained by the <a href="http://github.com/travis-ci">Travis CI community</a>. Feel free to <a href="http://github.com/travis-ci/travis-ci.github.com">contribute</a>!</p>
</div>
<div class="box">
<p>This design was kindly provided by the talented Ben Webster of <a href="http://www.plus2.com.au">Plus2</a>.</p>
</div>
<div class="box last">
<ul>
<li><a href="http://github.com/travis-ci/travis-ci" title="">View the Source</a></li>
<li><a href="http://twitter.com/travisci" title="">Travis CI on Twitter</a></li>
</ul>
</div><!-- /.box -->
</div><!-- /.wrapper -->
</div><!-- /#footer -->
</body>
</html>
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -31,7 +31,7 @@ <h1 class="riddle"><a href="/" title="Travis">Travis CI</a></h1>






<h2><a href="/2011/first-post/">Welcome to Travis</a></h2> <h2><a href="/2011/welcome-to-travis/">Welcome to Travis CI</a></h2>




</div><!-- /#main --> </div><!-- /#main -->
Expand Down
7 changes: 4 additions & 3 deletions source/Rules
Expand Up @@ -17,12 +17,13 @@ end
compile '*' do compile '*' do
ext = item[:extension].nil? ? nil : item[:extension].split('.').last ext = item[:extension].nil? ? nil : item[:extension].split('.').last


if ext == 'erb' case ext
when 'erb'
filter :erb filter :erb
elsif ext == 'markdown' when 'markdown', 'md'
filter :erb filter :erb
filter :kramdown filter :kramdown
elsif ext == 'html' when 'html'
filter :kramdown filter :kramdown
else else
raise "Filter is not configured for #{item.identifier} in Rules file." raise "Filter is not configured for #{item.identifier} in Rules file."
Expand Down
7 changes: 0 additions & 7 deletions source/content/2011/first-post.markdown

This file was deleted.

11 changes: 11 additions & 0 deletions source/content/2011/welcome-to-travis.md
@@ -0,0 +1,11 @@
---
title: Welcome to Travis CI
kind: article
layout: article
---

Travis CI is an open-source, distributed build system for the Ruby community.

We are going to blog more about it later but for now you can read up on the initial ideas on <a href="http://svenfuchs.com/2011/2/5/travis-a-distributed-build-server-tool-for-the-ruby-community">Sven's blog</a> and flip through <a href="http://talk-2011-lyon.heroku.com">a presentation</a> that we gave at 3 conferences and 2 Ruby user groups this summer.

If you feel like this is a great project then jump into <a href="irc://travis#irc.freenode.net">#travis on irc.freenode.net</a> and say hi!
Binary file modified source/tmp/dependencies
Binary file not shown.

0 comments on commit ef6ab37

Please sign in to comment.