-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d50573c
commit 17ffe0d
Showing
67 changed files
with
19,821 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
backend: | ||
name: git-gateway | ||
branch: master | ||
media_folder: 'static/img/' | ||
public_folder: 'img' | ||
collections: | ||
- name: posts | ||
label: Posts | ||
label_singular: Post | ||
folder: 'content/post' | ||
path: '{{slug}}/index' | ||
create: true # Allow users to create new documents in this collection | ||
fields: # The fields each document in this collection have | ||
- {label: "Title", name: "title", widget: "string"} | ||
- {label: "Subtitle", name: "subtitle", widget: "string"} | ||
- {label: "Body", name: "body", widget: "markdown"} | ||
- {label: "Publish this page on", name: "date", widget: "datetime"} | ||
- {label: "Summary", name: "summary", widget: "markdown"} | ||
- label: "Draft" | ||
name: "draft" | ||
widget: "boolean" | ||
default: false | ||
- label: "Featured" | ||
name: "featured" | ||
widget: "boolean" | ||
default: false | ||
- label: "Authors" | ||
name: "authors" | ||
required: false | ||
widget: "list" | ||
- label: "Tags" | ||
name: "tags" | ||
required: false | ||
widget: "list" | ||
- label: "Categories" | ||
name: "categories" | ||
required: false | ||
widget: "list" | ||
- label: "Projects" | ||
name: "projects" | ||
required: false | ||
widget: "list" | ||
- label: "Featured Image" | ||
name: "image" | ||
required: false | ||
widget: object | ||
fields: | ||
- label: "Upload an image named `featured.jpg/png`" | ||
name: "filename" | ||
widget: "image" | ||
default: "featured" | ||
media_library: | ||
config: | ||
multiple: false | ||
- {label: Caption, name: caption, widget: string, required: false} | ||
- {label: Description for screen readers, name: alt_text, widget: string, required: false} | ||
- {label: "Where's the focal point in the image? Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.", name: focal_point, widget: string, required: false, default: "Smart"} | ||
- {label: Thumbnail Only?, name: preview_only, widget: boolean, default: false} | ||
- name: talks | ||
label: Talks | ||
label_singular: Talk | ||
folder: 'content/talk' | ||
path: '{{slug}}/index' | ||
create: true # Allow users to create new documents in this collection | ||
fields: # The fields each document in this collection have | ||
- {label: "Title", name: "title", widget: "string"} | ||
- {label: "Abstract", name: "abstract", widget: "text"} | ||
- {label: "Where", name: "location", widget: "text"} | ||
- {label: "From", name: "date", widget: "datetime"} | ||
- {label: "To", name: "date_end", widget: "datetime", default: ""} | ||
- {label: "All day event?", name: "all_day", widget: "boolean", default: false} | ||
- label: Links/Tickets | ||
name: links | ||
required: false | ||
widget: list | ||
fields: | ||
- {label: Link, name: url, widget: string} | ||
- {label: Link text, name: name, widget: string, required: false} | ||
- label: Icon pack | ||
name: icon_pack | ||
widget: select | ||
multiple: false | ||
required: false | ||
options: | ||
- {label: "None", value: ""} | ||
- {label: "Solid", value: "fas"} | ||
- {label: "Regular", value: "far"} | ||
- {label: "Brand", value: "fab"} | ||
- {label: "Academic", value: "ai"} | ||
- {label: Icon, name: icon, widget: string, required: false} | ||
- {label: "Event", name: "event", widget: "string"} | ||
- {label: "Event link", name: "event_url", widget: "string"} | ||
- {label: "Publish this page on", name: "publishDate", widget: "datetime"} | ||
- {label: "Markdown slides (reference a deck in 'content/slides/')", name: "slides", widget: "string", required: false} | ||
- label: "Draft" | ||
name: "draft" | ||
widget: "boolean" | ||
default: false | ||
- label: "Featured" | ||
name: "featured" | ||
widget: "boolean" | ||
default: false | ||
- label: "Authors" | ||
name: "authors" | ||
required: false | ||
widget: "list" | ||
- label: "Tags" | ||
name: "tags" | ||
required: false | ||
widget: "list" | ||
- label: "Categories" | ||
name: "categories" | ||
required: false | ||
widget: "list" | ||
- label: "Projects (reference projects in 'content/project/')" | ||
name: "projects" | ||
required: false | ||
widget: "list" | ||
- label: "Featured Image" | ||
name: "image" | ||
required: false | ||
widget: object | ||
fields: | ||
- label: "Upload an image named `featured.jpg/png`" | ||
name: "filename" | ||
widget: "image" | ||
default: "featured" | ||
media_library: | ||
config: | ||
multiple: false | ||
- {label: Caption, name: caption, widget: string, required: false} | ||
- {label: Description for screen readers, name: alt_text, widget: string, required: false} | ||
- {label: "Where's the focal point in the image? Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.", name: focal_point, widget: string, required: false, default: "Smart"} | ||
- {label: Thumbnail Only?, name: preview_only, widget: boolean, default: false} | ||
- {label: "Details", name: "body", widget: "markdown"} | ||
- name: pages | ||
label: "Pages" | ||
files: | ||
- file: "content/privacy.md" | ||
label: "Privacy Policy" | ||
name: "privacy" | ||
fields: | ||
- {label: "Title", name: "title", widget: "string"} | ||
- {label: "Publish Date", name: "date", widget: "datetime"} | ||
- {label: "Subtitle", name: "subtitle", widget: "string"} | ||
- {label: "Summary", name: "summary", widget: "markdown"} | ||
- label: "Draft" | ||
name: "draft" | ||
required: false | ||
widget: "boolean" | ||
default: false | ||
- {label: "Body", name: "body", widget: "markdown"} | ||
- file: "content/terms.md" | ||
label: "Terms" | ||
name: "terms" | ||
fields: | ||
- {label: "Title", name: "title", widget: "string"} | ||
- {label: "Publish Date", name: "date", widget: "datetime"} | ||
- {label: "Subtitle", name: "subtitle", widget: "string"} | ||
- {label: "Summary", name: "summary", widget: "markdown"} | ||
- label: "Draft" | ||
name: "draft" | ||
required: false | ||
widget: "boolean" | ||
default: false | ||
- {label: "Body", name: "body", widget: "markdown"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!doctype html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Content Manager | Academic</title> | ||
<!-- Include Netlify Identity for authentication. --> | ||
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script> | ||
</head> | ||
<body> | ||
<!-- Include the latest Netlify CMS v2.x.x script that builds the admin panel. --> | ||
<script src="https://cdn.jsdelivr.net/npm/netlify-cms@2/dist/netlify-cms.min.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+107 KB
...atar_hu9202cabaed592d2d4bbe51596d4206a2_80238_270x270_fill_lanczos_center_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.