mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
titlecase for titles in feed, Facebook/Google+ sharing image
This commit is contained in:
parent
2f3eb99d11
commit
f06e1a3240
@ -104,5 +104,8 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<meta name="twitter:image:src" content="{{ site.url }}/kremalicious1024.png">
|
<meta name="twitter:image:src" content="{{ site.url }}/kremalicious1024.png">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- Facebook/Google+ Sharing -->
|
||||||
|
<link rel="image_src" href="{{ site.url }}/kremalicious1024.png" />
|
||||||
|
|
||||||
</head>
|
</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 %}
|
{% for post in site.posts limit:100 %}
|
||||||
<entry>
|
<entry>
|
||||||
{% if post.layout == "link" %}
|
{% if post.layout == "link" %}
|
||||||
<title>{{ post.title | escape }} →</title>
|
<title>{{ post.title | escape | titlecase }} →</title>
|
||||||
<link>{{ post.linkurl | escape }}</link>
|
<link>{{ post.linkurl | escape }}</link>
|
||||||
{% else %}
|
{% else %}
|
||||||
<title>{{ post.title | escape }}</title>
|
<title>{{ post.title | escape | titlecase }}</title>
|
||||||
<link>{{ site.url }}{{ post.url | escape }}</link>
|
<link>{{ site.url }}{{ post.url | escape }}</link>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user