Skip to content

Commit

Permalink
added bar with comics list
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmaguitar committed May 6, 2020
0 parents commit eb63888
Show file tree
Hide file tree
Showing 60 changed files with 10,986 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
build
Binary file added favicon.ico
Binary file not shown.
64 changes: 64 additions & 0 deletions frontity.settings.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
const settings = {
"name": "demo-cpt",
"state": {
"frontity": {
"url": "https://test.frontity.io",
"title": "Test Frontity Blog",
"description": "WordPress installation for Frontity development"
}
},
"packages": [
{
"name": "@frontity/twentytwenty-theme",
"state": {
"theme": {
"menu": [
[
"Home",
"/"
],
[
"Nature",
"/category/nature/"
],
[
"Travel",
"/category/travel/"
],
[
"Japan",
"/tag/japan/"
],
[
"About Us",
"/about-us/"
]
],
"featured": {
"showOnList": false,
"showOnPost": false
}
}
}
},
{
"name": "@frontity/wp-source",
"state": {
"source": {
api: "https://13millonesdenaves.com/wp-json",
postTypes: [
{
type: "comics_post", // type slug
endpoint: "comics_post", // REST API endpoint
archive: "comics_post" // link where this custom posts are listed
}
]
}
}
},
"@frontity/tiny-router",
"@frontity/html2react"
]
};

export default settings;
Loading

0 comments on commit eb63888

Please sign in to comment.