settings.js 2.44 KB
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
const ON = true;
const OFF = false;
const EMPTY_LINK = "javascript:undefined";
const DEFAULT = {
  social: {
    twitter: {
      icon: "/assets/images/twitter.png",
      profile: "https://twitter.com/InnolabM4"
    },
    facebook: {
      icon: "/assets/images/facebook.png",
      profile: "https://www.facebook.com/HfTStuttgart"
    },
    linkedin: {
      icon: "/assets/images/linkedin.png",
      profile: "https://www.linkedin.com/school/hochschule-f%C3%BCr-technik-stuttgart-%E2%80%93-university-of-applied-sciences"
    },
    webpage: {
      icon: "/assets/images/webpage.png",
      profile: "https://www.hft-stuttgart.de"
    }
  },
  avatar: "/assets/images/avatar.png"
}

let settings = {

  switches: [
    {
      name: "projectName",
      state: OFF
    },
    {
      name: "menu",
      state: OFF
    },
    {
      name: "participants",
      state: ON
    },
    {
      name: "footerLogos",
      state: OFF
    }
  ],

  projectName: "M4_LAB Page Demo",

  menu: [
    {
      menuText: "home",
      link: "/home"
    },
    {
      menuText: "bio",
      link: "/bio"
    },
    {
      menuText: "demo",
      link: "http://example.com"
    }
  ],

  participants: [
    {
      name: "Charlotte Doe",
      avatar: "/assets/images/charlotte.jpg",
      email: "charlotte.doe@lalaland.com",
      social: [
        {
          agent: "twitter",
          icon: DEFAULT.social.twitter.icon,
          profile: DEFAULT.social.twitter.profile
        },
        {
          agent: "facebook",
          icon: DEFAULT.social.facebook.icon,
          profile: DEFAULT.social.facebook.profile
        },
        {
          agent: "linkedin",
          icon: DEFAULT.social.linkedin.icon,
          profile: DEFAULT.social.linkedin.profile
        },
        {
          agent: "webpage",
          icon: DEFAULT.social.webpage.icon,
          profile: "http://websiteexample.com"
        }
      ]
    }
  ],

  footerLogos: [
    {
      logo: "/assets/logos/Logo_M4_LAB.jpg",
      href: EMPTY_LINK,
      title: "M4_LAB"
    },
    {
      logo: "/assets/logos/logo1.png",
      href: "http://www.innovative-hochschule.de",
      title: "Innovative Hochschule"
    },
    {
      logo: "/assets/logos/logo2.png",
      href: "https://www.bmbf.de",
      title: "Bundesministerium für Bildung und Forschung"
    },
    {
      logo: "/assets/logos/logo3.png",
      href: "https://www.gwk-bonn.de",
      title: "Die Gemeinsame Wissenschaftskonferenz"
    }
  ]
};