From: http://wiki.shopify.com/Link_to
{{ 'Typo' | link_to: 'http://typo.leetsoft.com' }}
This should create a link that looks like:
<a href="http://typo.leetsoft.com">Typo</a>
More info on links in liquid here: http://wiki.shopify.com/Link
Update 1:
You should also be able to use relative links:
{{ 'Typo' | link_to: 'pages/home' }} <!-- relative to current page -->
{{ 'Typo' | link_to: '/pages/home' }} <!-- relative to site root -->
{{ 'Typo' | link_to: '../pages/home' }} <!-- relative to parent dir -->
Update 2:
Ore better yet, you can reference the page's handle: {{ 'Title' | pages.pagehandle.url }}
<a href="...">wouldn't work? – Zach L Nov 1 '12 at 14:09