-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
29 lines (27 loc) · 1.51 KB
/
config.php
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
<?php
$backgroundPath = "";
$fontFamily = "'Helvetica Neue', Helvetica, sans-serif"; //Set the font for the page.
$themeValue = "dark"; //If your background is dark, use "dark". If your background is light, use "light".
$firstName = "Goatee"; //Use your first name. Be personal, no need for last names.
$jobTitle = "a free goodie"; //Your current job title.
$companyName = "League of Beards"; //The company you work for.
$companyURL = "http://leagueofbeards.com"; //Your company's URL.
$companyColor = "#be9360"; //A CSS color for your company's link/highlight.
$contactEmail = "[email protected]"; //Email to contact you.
$contactMessages = "[email protected]"; //iMessage contact, defaults to SMS if not on OS X.
$dribbbleUser = "kleinmaetschke"; //Your Dribbble username.
$numShots = 6; //Number of Dribbble shots. 3, 6, or 9.
$twitterUser = "leagueofbeards"; //Your Twitter username. Do not include the '@'.
$numTweets = 6; //Number of Tweets. 3, 6, or 9.
$traktUser = "klein"; //Your trakt.tv username.
$numWatched = 3; //Number of Watched items. 3, 6, or 9.
$lastfmUser = "kleinmaetschke"; //Your last.fm username.
$numListened = 9; //Number of Scrobbled songs. 3, 6, or 9.
//For this section, true means the section will be visible, false means the section will be hidden.
$companyVisible = true; //Company and Job Title
$contactVisible = true; //Contact links
$dribbbleVisible = true; //Dribbble
$twitterVisible = true; //Twitter
$traktVisible = true; //Trakt.tv
$lastfmVisible = true; //Last.fm
?>