Skip to content

Commit

Permalink
Add html-meta.
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed Jun 25, 2014
1 parent cec4472 commit 8a094bb
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion badges.md
Expand Up @@ -106,7 +106,7 @@ Here are some badges for open source projects.

## Thanks

**Jsfuse** © 2014, Rico Sta. Cruz. Released under the [MIT License].<br>
**Jsfuse** © 2014+, Rico Sta. Cruz. Released under the [MIT License].<br>
Authored and maintained by Rico Sta. Cruz with help from [contributors].

> [ricostacruz.com](http://ricostacruz.com) &nbsp;&middot;&nbsp;
Expand Down
41 changes: 41 additions & 0 deletions html-meta.md
@@ -0,0 +1,41 @@
---
title: "HTML: meta tags"
layout: default
---

### Viewport

<meta name='viewport' content='width=device-width'>
<meta name='viewport' content='width=1024'>

### UA

<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>

### URL

<meta property='og:url' content='http://...'>
<meta name='twitter:url' content='http://...'>
<link rel='canonical' href='http://...'>

### Title

<title>...</title>
<meta property='og:title' content='...'>
<meta name='twitter:title' content='...'>

### Description

<meta name="description" content="...">
<meta property="og:description" content="...">
<meta property="twitter:description" content="...">

### Image

<meta name="twitter:image" content="http://...">
<meta property="og:image" content="http://...">

### Reference

* https://dev.twitter.com/docs/cards
* https://developers.facebook.com/docs/opengraphprotocol/#types
6 changes: 6 additions & 0 deletions sh-pipes.md
@@ -0,0 +1,6 @@
---
title: "Shell: named pipes"
layout: default
---

diff <(ls ./old) <(ls ./new)

0 comments on commit 8a094bb

Please sign in to comment.