mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
titlecase for titles in feed, Facebook/Google+ sharing image
This commit is contained in:
parent
2f3eb99d11
commit
f06e1a3240
@ -105,4 +105,7 @@
|
||||
<meta name="twitter:image:src" content="{{ site.url }}/kremalicious1024.png">
|
||||
{% endif %}
|
||||
|
||||
<!-- Facebook/Google+ Sharing -->
|
||||
<link rel="image_src" href="{{ site.url }}/kremalicious1024.png" />
|
||||
|
||||
</head>
|
@ -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.
|
@ -16,10 +16,10 @@ layout: nil
|
||||
{% for post in site.posts limit:100 %}
|
||||
<entry>
|
||||
{% if post.layout == "link" %}
|
||||
<title>{{ post.title | escape }} →</title>
|
||||
<title>{{ post.title | escape | titlecase }} →</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 %}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user