Skip to content
Snippets Groups Projects
Commit e2a00981 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

ordered pages alphabetically

parent e4df75e0
No related branches found
No related tags found
No related merge requests found
Pipeline #392180 passed
...@@ -41,125 +41,51 @@ class Page implements Base { ...@@ -41,125 +41,51 @@ class Page implements Base {
const Pages: (Page | Folder)[] = [ const Pages: (Page | Folder)[] = [
{ {
name: "Home", name: "Attributions",
title: "Bielefeld CeBiTec", title: "Attributions",
path: "/", path: "/attributions",
component: Home, component: Attributions,
header: HOMEH, header: ATTH,
navlist: [""],
},
{
name: "BFH",
title: "BFH European MeetUp",
path: "/bfh",
component: Bfh,
header: BFHH,
navlist: [],
},
{
name: "Contribution",
title: "Contribution",
path: "/contribution",
component: Contribution,
header: CONTH,
navlist: [""], navlist: [""],
}, },
{ {
name: "Home", name: "Description",
title: "Bielefeld CeBiTec", title: "Project Description",
path: "/index.html", path: "/description",
component: Home, component: Description,
header: HOMEH, header: DESCH,
navlist: [""], navlist: ["Abstract", "Cystic Fibrosis", "Our motivation", "Approach", "Delivery", "Our vision", "References"]
},
{
name: "Team",
folder: [
{
name: "Team",
title: "Team",
path: "/team",
component: Team,
header: TEAMH,
navlist: [""],
},
{
name: "Attributions",
title: "Attributions",
path: "/attributions",
component: Attributions,
header: ATTH,
navlist: [""],
},
{
name: "Partners and Sponsors",
title: "Partners and Sponsors",
path: "/partners",
component: Partners,
header: SPONH,
navlist: [""],
},
{
name: "Impressum",
title: undefined,
path: "/impressum",
component: Impressum,
header: IMPH,
navlist: [""],
},
],
}, },
{ {
name: "Project", name: "Dry Lab",
folder: [ title: "Dry Lab",
{ path: "/dry-lab",
name: "Contribution", component: Drylab,
title: "Contribution", header: DRYH,
path: "/contribution", navlist: [""],
component: Contribution,
header: CONTH,
navlist: [""],
},
{
name: "Description",
title: "Project Description",
path: "/description",
component: Description,
header: DESCH,
navlist: ["Abstract", "Cystic Fibrosis", "Our motivation", "Approach", "Delivery", "Our vision", "References"]
},
/* {
name: "Engineering",
title: "Engineering Success",
path: "/engineering",
component: Engineering,
header: "Demonstrate engineering success in a technical aspect of your project by going through at least one iteration of the engineering design cycle. This achievement should be distinct from your Contribution for Bronze.",
navlist: [""],
}, */
{
name: "Dry Lab",
title: "Dry Lab",
path: "/dry-lab",
component: Drylab,
header: DRYH,
navlist: [""],
},
{
name: "Experiments",
title: "Experiments",
path: "/experiments",
component: Experiments,
header: EXPH,
navlist: [""],
},
{
name: "Notebook",
title: "Notebook",
path: "/notebook",
component: Notebook,
header: NOTEH,
navlist: [""],
},
{
name: "Results",
title: "Results",
path: "/results",
component: Results,
header: RESH,
navlist: [""],
},
],
}, },
{ {
name: "Safety", name: "Experiments",
title: "Safety", title: "Experiments",
path: "/safety", path: "/experiments",
component: Safety, component: Experiments,
header: SAFEH, header: EXPH,
navlist: [""], navlist: [""],
}, },
{ {
...@@ -170,6 +96,30 @@ const Pages: (Page | Folder)[] = [ ...@@ -170,6 +96,30 @@ const Pages: (Page | Folder)[] = [
header: HPH, header: HPH,
navlist: [""], navlist: [""],
}, },
{
name: "Home",
title: "Bielefeld CeBiTec",
path: "/",
component: Home,
header: HOMEH,
navlist: [""],
},
{
name: "Home",
title: "Bielefeld CeBiTec",
path: "/index.html",
component: Home,
header: HOMEH,
navlist: [""],
},
{
name: "Impressum",
title: undefined,
path: "/impressum",
component: Impressum,
header: IMPH,
navlist: [""],
},
{ {
name: "Interviews", name: "Interviews",
title: "Interviews", title: "Interviews",
...@@ -179,25 +129,52 @@ const Pages: (Page | Folder)[] = [ ...@@ -179,25 +129,52 @@ const Pages: (Page | Folder)[] = [
navlist: [""], navlist: [""],
}, },
{ {
name: "Contribution", name: "Notebook",
folder: [ title: "Notebook",
{ path: "/notebook",
name: "BFH", component: Notebook,
title: "BFH European MeetUp", header: NOTEH,
path: "/bfh", navlist: [""],
component: Bfh, },
header: BFHH, {
navlist: [], name: "Partners and Sponsors",
}, title: "Partners and Sponsors",
{ path: "/partners",
name: "Wiki", component: Partners,
title: "wiki", header: SPONH,
path: "/wiki", navlist: [""],
component: Wiki, },
header: WIKIH, {
navlist: [""], name: "Results",
}, title: "Results",
] path: "/results",
component: Results,
header: RESH,
navlist: [""],
},
{
name: "Safety",
title: "Safety",
path: "/safety",
component: Safety,
header: SAFEH,
navlist: [""],
},
{
name: "Team",
title: "Team",
path: "/team",
component: Team,
header: TEAMH,
navlist: [""],
},
{
name: "Wiki",
title: "wiki",
path: "/wiki",
component: Wiki,
header: WIKIH,
navlist: [""],
}, },
]; ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment