From b5247d9ecaa36c9cc90b92c7066c1a4cf0d26935 Mon Sep 17 00:00:00 2001 From: Simmo Saan Date: Thu, 25 Jul 2024 18:05:03 +0300 Subject: [PATCH] Remove github-metadata post (#2599) The jekyll-github-metadata plugin was removed in PR #668, so this no longer works. Clearly broken here: https://alshedivat.github.io/al-folio/blog/2020/github-metadata/. --- _posts/2020-09-28-github-metadata.md | 39 ---------------------------- 1 file changed, 39 deletions(-) delete mode 100644 _posts/2020-09-28-github-metadata.md diff --git a/_posts/2020-09-28-github-metadata.md b/_posts/2020-09-28-github-metadata.md deleted file mode 100644 index 3adbdee..0000000 --- a/_posts/2020-09-28-github-metadata.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: post -title: a post with github metadata -date: 2020-09-28 21:01:00 -description: a quick run down on accessing github metadata. -tags: metadata -categories: sample-posts external-services ---- - -A sample blog page that demonstrates the accessing of github meta data. - -## What does Github-MetaData do? - -- Propagates the site.github namespace with repository metadata -- Setting site variables : - - site.title - - site.description - - site.url - - site.baseurl -- Accessing the metadata - duh. -- Generating edittable links. - -## Additional Reading - -- If you're recieving incorrect/missing data, you may need to perform a Github API authentication. -- Go through this README for more details on the topic. -- This page highlights all the feilds you can access with github-metadata. -
- -## Example MetaData - -- Host Name : {{ site.github.hostname }} -- URL : {{ site.github.url }} -- BaseURL : {{ site.github.baseurl }} -- Archived : {{ site.github.archived}} -- Contributors : - {% for contributor in site.github.contributors %} - - {{ contributor.login }} - {% endfor %}