Remove unnecessary math functions and created table for all

This commit is contained in:
Ryan Watters
2017-02-15 23:47:00 -06:00
parent 0d0973d119
commit 19d7a56e00
148 changed files with 447 additions and 357 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
---
title: Introduction to Hugo
linktitle: Introduction to Hugo
title: About Hugo
linktitle: About Hugo
description: Hugo's features, roadmap, and license, as well as the motivation behind creating Hugo.
date: 2017-02-01
publishdate: 2017-02-01
@@ -9,7 +9,7 @@ layout: single
weight: 01
draft: false
slug:
aliases:
aliases: [/overview/introduction/]
notes:
---
+2 -1
View File
@@ -27,7 +27,7 @@ notes:
* Support for configurable [taxonomies][], including categories and tags
* Ability to [sort content][] as you desire through powerful template [functions][]
* Automatic [table of contents][] generation
* Dynamic menu creation
* [Dynamic menu][] creation
* [Pretty URLs][] support
* [Permalink][] pattern support
* Redirects via [aliases][]
@@ -61,6 +61,7 @@ See what's coming next in the [Hugo roadmap][].
[content summaries]: /content-management/content-summaries/
[content types]: /content-management/content-types/
[Disqus]: https://disqus.com/
[Dynamic menu]: /templates/menus/
[Extremely fast]: https://github.com/bep/hugo-benchmark
[front matter]: /content-management/front-matter/
[functions]: /functions/
+1 -1
View File
@@ -6,7 +6,7 @@ date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [content, source, organization]
categories: [content]
categories: [content management]
weight: 01
draft: false
aliases: [/content/]
+1 -1
View File
@@ -6,7 +6,7 @@ date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [archetypes,generators,metadata,front matter]
categories: [content]
categories: [content management]
weight: 50
draft: false
slug:
@@ -6,6 +6,7 @@ date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [lists,sections,content,types,organization]
categories: [content management]
weight: 30
draft: false
slug:
@@ -5,8 +5,8 @@ description:
date: 2017-01-10
publishdate: 2017-01-10
lastmod: 2017-01-10
tags: []
categories: []
tags: [summaries,abstracts,read more]
categories: [content management]
weight: 70
draft: false
slug:
+2 -2
View File
@@ -5,8 +5,8 @@ description:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [lists,sections,content,types,organization]
categories: []
tags: [lists,sections,content types,types,organization]
categories: [content management]
weight: 40
draft: false
slug:
@@ -5,7 +5,7 @@ description:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-01-09
categories: [content]
categories: [content management]
tags: [cross references, anchors]
weight: 80
draft: false
+1 -1
View File
@@ -5,7 +5,7 @@ description: Hugo allows you to add front matter in yaml, toml, or json to your
date: 2017-01-09
publishdate: 2017-01-09
lastmod: 2017-01-09
categories: [content]
categories: [content management]
tags: [front matter, yaml, toml, json, metadata, archetypes]
weight: 20
draft: false
@@ -5,6 +5,7 @@ description: Hugo uses the BlackFriday markdown parser for content files but als
date: 2017-01-10
publishdate: 2017-01-10
lastmod: 2017-01-10
categories: [content management]
tags: [markdown,asciidoc,mmark,content format]
weight: 10
draft: false
@@ -5,7 +5,8 @@ description:
date: 2017-01-10
publishdate: 2017-01-10
lastmod: 2017-01-10
tags: []
categories: [content management]
tags: [multilingual,i189,]
weight: 120
draft: false
slug:
@@ -5,8 +5,8 @@ description:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: []
categories: []
tags: [table of contents, toc]
categories: [content management]
weight: 100
draft: false
slug:
+1 -1
View File
@@ -6,7 +6,7 @@ date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [taxonomies,metadata,front matter,terms]
categories: [content]
categories: [content management]
weight: 60
draft: false
slug:
+1 -1
View File
@@ -5,7 +5,7 @@ description:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [aliases,redirects,permalinks, url management,urls]
tags: [aliases,redirects,permalinks,url management,urls]
categories: [content management]
weight: 90
draft: false
+1 -1
View File
@@ -8,7 +8,7 @@ lastmod: 2017-02-01
tags: [contribute,tutorials]
author:
authorprofileurl:
weight:
weight: 01
draft: false
slug:
aliases: [/tutorials/how-to-contribute-to-hugo/]
@@ -0,0 +1,74 @@
---
title: Add Your Site to the Showcase
linktitle: Add Your Site to the Showcase
description: Proud of a site you built with Hugo? Add it to the Official Hugo Site Showcase.
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
categories: [contribute]
tags: [dev,showcase]
weight:
draft: false
slug:
aliases:
notes:
---
## Showcase Additions
You got your new website running and it's powered by Hugo? Great. You can add your website with a few steps to the [showcase](/showcase/).
First, make sure that you created a [fork](https://help.github.com/articles/fork-a-repo/) of Hugo on Github and cloned your fork on your local computer. Next, create a separate branch for your additions:
```
# You can choose a different descriptive branch name if you like
git checkout -b showcase-addition
```
Let's create a new document that contains some metadata of your homepage. Replace `example` in the following examples with something unique like the name of your website. Inside the terminal enter the following commands:
```
cd docs
hugo new showcase/example.md
```
You should find the new file at `content/showcase/example.md`. Open it in an editor. The file should contain a frontmatter with predefined variables like below:
```
---
date: 2016-02-12T21:01:18+01:00
description: ""
license: ""
licenseLink: ""
sitelink: http://spf13.com/
sourceLink: https://github.com/spf13/spf13.com
tags:
- personal
- blog
thumbnail: /images/spf13-tn.jpg
title: example
---
```
Add at least values for `sitelink`, `title`, `description` and a path for `thumbnail`.
Furthermore, we need to create the thumbnail of your website. **It's important that the thumbnail has the required dimensions of 600px by 400px.** Give your thumbnail a name like `example-tn.png`. Save it under `docs/static/img/`.
Check a last time that everything works as expected. Start Hugo's built-in server in order to inspect your local copy of the showcase in the browser:
hugo server
If everything looks fine, we are ready to commit your additions. For the sake of best practices, please make sure that your commit follows our [code contribution guideline][].
{{% input "commit-site.sh" %}}
```git
git commit -m "docs: Add example.com to the showcase"
```
{{% /input %}}
Last but not least, we're ready to create a [pull request](https://github.com/spf13/hugo/compare).
Don't forget to accept the contributor license agreement. Click on the yellow badge in the automatically added comment in the pull request.
[code contribution guideline]: https://github.com/spf13/hugo#code-contribution-guideline
@@ -0,0 +1,15 @@
---
title: Contribute to Hugo Development
linktitle: Contribute to Hugo Development
description: Hugo relies heavily on the contributions of the open source community. You don't need to be a Golang guru to contribute to the project's development.
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
categories: [contribute]
tags: [dev,open source]
weight:
draft: false
slug:
aliases:
notes:
---
@@ -1,16 +0,0 @@
---
title: Contribute to the Docs
linktitle: Contribute to the Docs
description:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: [contribute,tutorials]
author:
authorprofileurl:
weight:
draft: false
slug:
aliases:
notes:
---
@@ -0,0 +1,17 @@
---
title: Contribute to the Hugo Docs
linktitle: Contribute to the Hugo Docs
description: Documentation is an integral part of any open source project. The Hugo docs are as much a work in progress as the source it attempts to teach its users.
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
categories: [contribute]
tags: [docs,documentation]
weight:
draft: false
slug:
aliases:
notes:
---
Documentation is an integral part of any open source project. The Hugo docs were completely reworked in anticipation of the release of v0.19.
-22
View File
@@ -1,22 +0,0 @@
---
title: div
linktitle:
description:
qr_description:
qr_returns:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
## Example
## Advanced Example
+26
View File
@@ -0,0 +1,26 @@
---
title: math
linktitle: Math
description:
qr_description:
qr_returns:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight:
draft: false
slug:
aliases: []
notes:
---
There are 6 basic mathematical operators that can be used in Hugo templates:
| Function | Description | Example |
| -------- | ------------------------ | ----------------------------- |
| `add` | Adds two integers. | `{{add 1 2}}` → 3 |
| `div` | Divides two integers. | `{{div 6 3}}` → 2 |
| `mod` | Modulus of two integers. | `{{mod 15 3}}` → 0 |
| `modBool`| Boolean of modulus of two integers. Evaluates to `true` if = 0. | `{{modBool 15 3}}` → true |
| `mul` | Multiplies two integers. | `{{mul 2 3}}` → 6 |
| `sub` | Subtracts two integers. | `{{sub 3 2}}` → 1 |
-22
View File
@@ -1,22 +0,0 @@
---
title: mod
linktitle:
description:
qr_description:
qr_returns:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
## Example
## Advanced Example
-22
View File
@@ -1,22 +0,0 @@
---
title: modBool
linktitle:
description:
qr_description:
qr_returns:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
## Example
## Advanced Example
-22
View File
@@ -1,22 +0,0 @@
---
title: mul
linktitle:
description:
qr_description:
qr_returns:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
## Example
## Advanced Example
-22
View File
@@ -1,22 +0,0 @@
---
title: sub
linktitle:
description:
qr_description:
qr_returns:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
## Example
## Advanced Example
+5 -6
View File
@@ -2,11 +2,9 @@
title: Release Notes
linktitle:
description: Information on the Hugo license.
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
weight: 30
draft: false
type:
@@ -14,4 +12,5 @@ layout:
slug:
aliases: [/meta/release-notes]
notes:
---
---
@@ -7,7 +7,7 @@ sitelink: http://2626.info/
tags:
- personal
- blog
thumbnail: /img/2626info-tn.png
thumbnail: /images/2626info-tn.png
title: 2626.info
---
@@ -1,6 +1,6 @@
---
title: Site Showcase
linktitle:
linktitle: Site Showcase
description: A collection of sites built using Hugo.
date: 2017-02-01
publishdate: 2017-02-01
@@ -11,9 +11,6 @@ weight: 01
draft: false
hidesectioncontents: false
slug:
aliases: []
aliases: [/site-showcase/]
notes:
---
---
@@ -10,7 +10,7 @@ tags:
- personal
- blog
- foundation
thumbnail: /img/antzucaro-tn.jpg
thumbnail: /images/antzucaro-tn.jpg
title: Ant Zucaro
---
@@ -10,6 +10,6 @@ tags:
- company
- blog
- bootstrap
thumbnail: /img/apperneticioblog.png
thumbnail: /images/apperneticioblog.png
title: Appernetic
---
@@ -9,6 +9,6 @@ sourceLink: https://github.com/arresteddevops/ado-hugo
tags:
- podcast
- bootstrap
thumbnail: /img/arresteddevops-tn.png
thumbnail: /images/arresteddevops-tn.png
title: arresteddevops
---
@@ -9,7 +9,7 @@ sourceLink: https://gitlab.com/acodispo/andrewcodispoti-com
tags:
- personal
- bootstrap
thumbnail: /img/asc-tn.jpg
thumbnail: /images/asc-tn.jpg
title: Andrew S Codispoti
---
@@ -8,7 +8,7 @@ sourceLink: https://github.com/astrochili/astrochili.github.io
tags:
- personal
- blog
thumbnail: /img/astrochili-tn.png
thumbnail: /images/astrochili-tn.png
title: Roman Silin
---
@@ -6,7 +6,7 @@ licenseLink: ""
sitelink: https://aydos.com/
tags:
- web applications
thumbnail: /img/aydoscom.png
thumbnail: /images/aydoscom.png
title: aydos.com
---
@@ -7,7 +7,7 @@ sitelink: https://barricade.io
tags:
- company
- security
thumbnail: /img/barricade-tn.png
thumbnail: /images/barricade-tn.png
title: Barricade
---
@@ -9,7 +9,7 @@ sourceLink: "https://github.com/bep/bepsays.com"
tags:
- personal
- blog
thumbnail: /img/bepsays-tn.png
thumbnail: /images/bepsays-tn.png
title: bepsays.com
---
@@ -7,7 +7,7 @@ tags:
- blog
- community
- interviews
thumbnail: /img/bugtrackersio-tn.jpg
thumbnail: /images/bugtrackersio-tn.jpg
title: bugtrackers.io
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/camunda/blog.camunda.org
tags:
- company
- blog
thumbnail: /img/camunda-blog.png
thumbnail: /images/camunda-blog.png
title: Camunda Blog
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/camunda/camunda-docs-theme
tags:
- company
- documentation
thumbnail: /img/camunda-docs.png
thumbnail: /images/camunda-docs.png
title: Camunda Docs
---
@@ -8,7 +8,7 @@ tags:
- bootstrap
- portfolio
- tech
thumbnail: /img/cdnoverview-tn.png
thumbnail: /images/cdnoverview-tn.png
title: cdnoverview.com
---
@@ -7,6 +7,6 @@ sourceLink: https://github.com/hughgrigg/chineseboost-articles
tags:
- learning
- education
thumbnail: /img/chinese-grammar-tn.png
thumbnail: /images/chinese-grammar-tn.png
title: Chinese Grammar
---
@@ -6,7 +6,7 @@ sitelink: http://www.chingli.com/
tags:
- personal
- blog
thumbnail: /img/chingli-tn.jpg
thumbnail: /images/chingli-tn.jpg
title: <span lang="zh-CN">青砾</span> (chingli)
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/SamuelDebruyn/chipsncookies-site
tags:
- personal
- blog
thumbnail: /img/chipsncookies-tn.png
thumbnail: /images/chipsncookies-tn.png
title: Chips 'n' Cookies
---
@@ -7,6 +7,6 @@ sitelink: https://christianmendoza.me/
tags:
- personal
- profile
thumbnail: /img/christianmendoza-tn.png
thumbnail: /images/christianmendoza-tn.png
title: christianmendoza.me
---
@@ -4,9 +4,9 @@ description: "Cinegy Open documentation project"
license: ""
licenseLink: ""
sitelink: https://open.cinegy.com/
sourceLink:
sourceLink:
tags:
- documentation
thumbnail: /img/cinegyopen-tn.png
thumbnail: /images/cinegyopen-tn.png
title: Cinegy Open
---
@@ -9,6 +9,6 @@ tags:
- fintech
- payments
- acquirer
thumbnail: /img/clearhaus-tn.png
thumbnail: /images/clearhaus-tn.png
title: Clearhaus
---
@@ -9,7 +9,7 @@ tags:
- company
- documentation
- foundation
thumbnail: /img/cloudshark-tn.jpg
thumbnail: /images/cloudshark-tn.jpg
title: CloudShark
---
@@ -9,6 +9,6 @@ sourceLink: https://github.com/igorkulman/coding-journal
tags:
- blog
- portfolio
thumbnail: /img/codingjournal-tn.png
thumbnail: /images/codingjournal-tn.png
title: Coding Journal
---
@@ -10,7 +10,7 @@ tags:
- academic
- blog
- kube
thumbnail: /img/consequently.jpg
thumbnail: /images/consequently.jpg
title: consequently.org
---
@@ -8,7 +8,7 @@ tags:
- edtech
- technology
- blog
thumbnail: /img/ctlcompiled-tn.png
thumbnail: /images/ctlcompiled-tn.png
title: CompilED at CTL
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/danmux/danmux-hugo
tags:
- personal
- blog
thumbnail: /img/danmux-tn.jpg
thumbnail: /images/danmux-tn.jpg
title: Danmux
---
@@ -7,7 +7,7 @@ tags:
- tech
- blog
- website
thumbnail: /img/datapipelinearchitect-tn.jpg
thumbnail: /images/datapipelinearchitect-tn.jpg
title: Data Pipeline Architect
---
@@ -10,7 +10,7 @@ tags:
- photography
- portfolio
- blog
thumbnail: /img/davidepetilli-tn.jpg
thumbnail: /images/davidepetilli-tn.jpg
title: Davide Petilli
---
@@ -9,7 +9,7 @@ tags:
- personal
- blog
- tech
thumbnail: /img/davidrallen-tn.png
thumbnail: /images/davidrallen-tn.png
title: David Allen
---
@@ -7,7 +7,7 @@ sitelink: https://davidyat.es/
tags:
- personal
- blog
thumbnail: /img/davidyates-tn.png
thumbnail: /images/davidyates-tn.png
title: David Yates
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/peteraba/devmonk.com
tags:
- educational
- video
thumbnail: /img/devmonk-tn.jpg
thumbnail: /images/devmonk-tn.jpg
title: devmonk
---
@@ -8,7 +8,7 @@ sourceLink: https://github.com/dmitriid/dmitriid.com
tags:
- personal
- blog
thumbnail: /img/dmitriid.com.png
thumbnail: /images/dmitriid.com.png
title: dmitriid.com
---
@@ -7,7 +7,7 @@ sourceLink: https://github.com/emilyhorsman/buttercup
tags:
- personal
- blog
thumbnail: /img/emilyhorsman.com-tn.jpg
thumbnail: /images/emilyhorsman.com-tn.jpg
title: emilyhorsman.com
---
@@ -11,6 +11,6 @@ tags:
- esolia
- rickcogley
- japan
thumbnail: /img/esolia_com-tn.png
thumbnail: /images/esolia_com-tn.png
title: eSolia.com
---
@@ -11,6 +11,6 @@ tags:
- esolia
- rickcogley
- japan
thumbnail: /img/esolia_pro-tn.png
thumbnail: /images/esolia_pro-tn.png
title: eSolia.pro
---
@@ -6,6 +6,6 @@ licenseLink: ""
sitelink: https://docs.eurie.io
tags:
- documentation
thumbnail: /img/docs.eurie.io-tn.png
thumbnail: /images/docs.eurie.io-tn.png
title: eurie Desk docs
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/fale/fale.io
tags:
- personal
- blog
thumbnail: /img/fale-tn.png
thumbnail: /images/fale-tn.png
title: fale.io
---
@@ -7,7 +7,7 @@ sitelink: https://fixatom.com/
tags:
- personal
- blog
thumbnail: /img/fixatom-tn.png
thumbnail: /images/fixatom-tn.png
title: Atom
---
@@ -10,7 +10,7 @@ tags:
- community
- documentation
- translation
thumbnail: /img/fxsitecompat-tn.png
thumbnail: /images/fxsitecompat-tn.png
title: Firefox Site Compatibility
---
@@ -10,6 +10,6 @@ tags:
- projects
- music
- drawings
thumbnail: /img/gntech-tn.png
thumbnail: /images/gntech-tn.png
title: gntech.se
---
@@ -7,7 +7,7 @@ licenseLink: ""
sitelink: http://getgb.io
tags:
- project
thumbnail: /img/gogb-tn.jpg
thumbnail: /images/gogb-tn.jpg
title: GoGB
---
@@ -8,6 +8,6 @@ sitelink: http://www.goin5minutes.com/
sourceLink: https://github.com/arschles/go-in-5-minutes/tree/master/www
tags:
- screencasts
thumbnail: /img/goin5minutes-tn.png
thumbnail: /images/goin5minutes-tn.png
title: Go in 5 minutes
---
@@ -6,6 +6,6 @@ sourceLink: https://github.com/zerok/h10n.me
tags:
- personal
- profile
thumbnail: /img/h10n.me-tn.png
thumbnail: /images/h10n.me-tn.png
title: h10n.me
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/spf13/hugo/tree/master/docs
tags:
- documentation
- bootstrap
thumbnail: /img/hugo-tn.jpg
thumbnail: /images/hugo-tn.jpg
title: Hugo
---
@@ -8,7 +8,7 @@ sourceLink: https://github.com/jamesacampbell/causes-and-effects-hugo
tags:
- personal
- blog
thumbnail: /img/jamescampbell-tn.png
thumbnail: /images/jamescampbell-tn.png
title: jamescampbell.us
---
@@ -7,6 +7,6 @@ sitelink: http://jorgennilsson.com/
tags:
- personal
- blog
thumbnail: /img/jorgennilsson-tn.png
thumbnail: /images/jorgennilsson-tn.png
title: jorgennilsson.com
---
@@ -10,7 +10,7 @@ tags:
- personal
- blog
- academic
thumbnail: /img/kjhealy-tn.jpg
thumbnail: /images/kjhealy-tn.jpg
title: Kieran Healy
---
@@ -9,7 +9,7 @@ tags:
- personal
- blog
- programming
thumbnail: /img/klingt-net-tn.png
thumbnail: /images/klingt-net-tn.png
title: klingt net
---
@@ -8,7 +8,7 @@ sitelink: http://www.launchcode5.com/
sourceLink: https://github.com/Launchcode5/launchcode5.com
tags:
- bootstrap
thumbnail: /img/launchcode-tn.jpg
thumbnail: /images/launchcode-tn.jpg
title: Launchcode Software Studios
---
@@ -8,7 +8,7 @@ sitelink: http://leepenney.com/
tags:
- personal
- website
thumbnail: /img/leepenney-tn.jpg
thumbnail: /images/leepenney-tn.jpg
title: Lee Penney
---
@@ -7,6 +7,6 @@ sitelink: https://www.leowkahman.com/
tags:
- personal
- blog
thumbnail: /img/leowkahman-tn.png
thumbnail: /images/leowkahman-tn.png
title: Leow Kah Man - Tech Blog
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/LK4D4/lk4d4.darth.io
tags:
- personal
- blog
thumbnail: /img/lk4d4-tn.jpg
thumbnail: /images/lk4d4-tn.jpg
title: lk4d4.darth.io
---
@@ -10,6 +10,6 @@ tags:
- reviews
- education
- audiophile
thumbnail: /img/losslesslife-tn.png
thumbnail: /images/losslesslife-tn.png
title: LosslessLife
---
@@ -9,6 +9,6 @@ sourceLink: https://github.com/mariobox/Hugo-Source
tags:
- personal
- blog
thumbnail: /img/mariosanchez-tn.jpg
thumbnail: /images/mariosanchez-tn.jpg
title: mariosanchez.org
---
@@ -8,7 +8,7 @@ sourceLink: https://gitlab.com/mayan-edms/website
tags:
- paperless
- floss
thumbnail: /img/mayan-edms-tn.png
thumbnail: /images/mayan-edms-tn.png
title: Mayan EDMS
---
@@ -9,7 +9,7 @@ sourceLink: https://bitbucket.org/mdwhatcott/michaelwhatcott.com-boilerplate/src
tags:
- personal
- blog
thumbnail: /img/michaelwhatcott-tn.jpg
thumbnail: /images/michaelwhatcott-tn.jpg
title: michaelwhatcott
---
@@ -7,7 +7,7 @@ sitelink: http://engineering.mongodb.com/
tags:
- engineering
- blog
thumbnail: /img/mongodb-eng-tn.png
thumbnail: /images/mongodb-eng-tn.png
title: The Mongodb Engineering Journal
---
@@ -9,6 +9,6 @@ tags:
- personal
- portfolio
- design
thumbnail: /img/mtbhomer-tn.png
thumbnail: /images/mtbhomer-tn.png
title: mtbhomer.com
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/nickoneill/blog.nickoneill.name
tags:
- personal
- blog
thumbnail: /img/nickoneill-tn.jpg
thumbnail: /images/nickoneill-tn.jpg
title: authenticgeek
---
@@ -9,6 +9,6 @@ sourceLink: https://github.com/shivanshuag/shivanshuag.github.io/tree/new
tags:
- personal
- blog
thumbnail: /img/ninjaducks-tn.png
thumbnail: /images/ninjaducks-tn.png
title: ninjaducks.in
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/ninya-io/ninya-io.github.io/tree/dev
tags:
- project
- blog
thumbnail: /img/ninya-tn.jpg
thumbnail: /images/ninya-tn.jpg
title: ninya.io
---
@@ -6,6 +6,6 @@ sitelink: http://nodesk.co/
tags:
- digital nomad
- web
thumbnail: /img/nodesk-tn.png
thumbnail: /images/nodesk-tn.png
title: nodesk.co
---
@@ -8,6 +8,6 @@ sourceLink: https://github.com/peterychuang/peterychuang.github.io/tree/source
tags:
- personal
- blog
thumbnail: /img/novelist-xyz.png
thumbnail: /images/novelist-xyz.png
title: Peter Y. Chuang
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/natefinch/npf
tags:
- personal
- blog
thumbnail: /img/npf-tn.jpg
thumbnail: /images/npf-tn.jpg
title: npf.io
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/peteraba/peteraba.com
tags:
- personal
- blog
thumbnail: /img/peteraba-tn.jpg
thumbnail: /images/peteraba-tn.jpg
title: peteraba
---
@@ -8,6 +8,6 @@ sourceLink: https://github.com/moonytheloony/Blog-Web
tags:
- personal
- blog
thumbnail: /img/rahulrai_in-tn.png
thumbnail: /images/rahulrai_in-tn.png
title: My Take on Cloud
---
@@ -8,7 +8,7 @@ sitelink: http://techblog.rakuten.co.jp/
tags:
- company
- blog
thumbnail: /img/rakutentech-tn.png
thumbnail: /images/rakutentech-tn.png
title: Rakuten Tech Blog
---
@@ -8,7 +8,7 @@ sourceLink: https://github.com/rdegges/rdegges-www
tags:
- personal
- blog
thumbnail: /img/rdegges-tn.png
thumbnail: /images/rdegges-tn.png
title: Randall Degges
---
@@ -6,7 +6,7 @@ sitelink: http://readtext.org/
tags:
- textfiles
- reading
thumbnail: /img/readtext-tn.png
thumbnail: /images/readtext-tn.png
title: ReadText
---
@@ -12,6 +12,6 @@ tags:
- technical
- electronics
- reviews
thumbnail: /img/richardsumilang-tn.png
thumbnail: /images/richardsumilang-tn.png
title: Richard Sumilang - Top Secret Labs
---
@@ -11,6 +11,6 @@ tags:
- blog
- rickcogley
- japan
thumbnail: /img/rick_cogley_info-tn.jpg
thumbnail: /images/rick_cogley_info-tn.jpg
title: rick.cogley.info
---
@@ -10,7 +10,7 @@ tags:
- website
- blog
- tech
thumbnail: /img/ridingbytes-tn.png
thumbnail: /images/ridingbytes-tn.png
title: RIDING BYTES
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/robertbasic/robertbasic.com-hugo
tags:
- personal
- blog
thumbnail: /img/robertbasic-tn.jpg
thumbnail: /images/robertbasic-tn.jpg
title: Robert Basic's blog
---
@@ -9,7 +9,7 @@ sourceLink: https://github.com/scottcwilson/hugosite
tags:
- personal
- blog
thumbnail: /img/scottcwilson-tn.png
thumbnail: /images/scottcwilson-tn.png
title: scottcwilson.com
---
@@ -8,7 +8,7 @@ sourceLink: https://github.com/shapeshed/shapeshed.com
tags:
- personal
- blog
thumbnail: /img/shapeshed-tn.png
thumbnail: /images/shapeshed-tn.png
title: shapeshed.com
---

Some files were not shown because too many files have changed in this diff Show More