Skip to content

Commit

Permalink
Finalized vue.js posting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkosertic committed Dec 21, 2018
1 parent 1495e2e commit bf70df6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
4 changes: 3 additions & 1 deletion content/global/favorites.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
+++
date = "2018-02-01T00:00:00+02:00"
date = "2018-12-20T00:00:00+02:00"
title = "My favorite postings"
tags = []
draft = false
Expand All @@ -9,6 +9,8 @@ include::globals.adoc[]

Here is a list of my favorite and evergreen postings so far:

* link:{{< ref "webassembly-and-vuejs.adoc" >}}[WebAssembly with vue.js]
* link:{{< ref "alicebobcaroldaveopencl.adoc" >}}[Alice, Bob, Carol and Dave OpenCL Edition]
* link:{{< ref "object-oriented-webassembly.adoc" >}}[Object-Oriented WebAssembly]
Expand Down
28 changes: 28 additions & 0 deletions static/admin/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
backend:
name: git-gateway
branch: master
repo: mirkosertic/www_mirkosertic_de
media_folder: "static/media"
collections:
- name: "blog" # Used in routes, e.g., /admin/collections/blog
label: "Blog" # Used in the UI
folder: "content/post" # The path to the folder where the documents are stored
create: true # Allow users to create new documents in this collection
slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
fields: # The fields for each document, usually in front matter
- {label: "Title", name: "title", widget: "string"}
- {label: "Description", name: "description", widget: "string"}
- {label: "Publish Date", name: "date", widget: "datetime"}
- {label: "Tags", name: "date", widget: "datetime"}
- {label: "Body", name: "tags", widget: "list"}
- name: "global" # Used in routes, e.g., /admin/collections/blog
label: "Global" # Used in the UI
folder: "content/global" # The path to the folder where the documents are stored
create: true # Allow users to create new documents in this collection
slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
fields: # The fields for each document, usually in front matter
- {label: "Title", name: "title", widget: "string"}
- {label: "Description", name: "description", widget: "string"}
- {label: "Publish Date", name: "date", widget: "datetime"}
- {label: "Tags", name: "date", widget: "datetime"}
- {label: "Body", name: "tags", widget: "list"}
12 changes: 12 additions & 0 deletions static/admin/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Manager</title>
</head>
<body>
<!-- Include the script that builds the page and powers Netlify CMS -->
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
</body>
</html>

0 comments on commit bf70df6

Please sign in to comment.