1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-28 16:48:00 +02:00

titlecase for titles in feed, Facebook/Google+ sharing image

This commit is contained in:
Matthias Kretschmann 2013-12-16 00:13:37 +01:00
parent 2f3eb99d11
commit f06e1a3240
3 changed files with 20 additions and 2 deletions

View File

@ -104,5 +104,8 @@
{% else %}
<meta name="twitter:image:src" content="{{ site.url }}/kremalicious1024.png">
{% endif %}
<!-- Facebook/Google+ Sharing -->
<link rel="image_src" href="{{ site.url }}/kremalicious1024.png" />
</head>

View File

@ -0,0 +1,15 @@
---
layout: link
title: why the world's best photo startup is going out of business
linkurl: http://www.theverge.com/2013/11/5/5039216/everpix-life-and-death-inside-the-worlds-best-photo-startup
categories:
- photography
---
Really sad, the service was awesome. But good example that building an awesome product is not enough:
> While the team obsessed about perfecting the service, the founders paid less attention to the subject investors care about most: growth. [...]
>
> And so at a time when successful photo apps were attracting users by the millions, by March the company had attracted fewer than 19,000 signups. Everpix had spent almost nothing to advertise the service.

View File

@ -16,10 +16,10 @@ layout: nil
{% for post in site.posts limit:100 %}
<entry>
{% if post.layout == "link" %}
<title>{{ post.title | escape }} &#8594;</title>
<title>{{ post.title | escape | titlecase }} &#8594;</title>
<link>{{ post.linkurl | escape }}</link>
{% else %}
<title>{{ post.title | escape }}</title>
<title>{{ post.title | escape | titlecase }}</title>
<link>{{ site.url }}{{ post.url | escape }}</link>
{% endif %}