-
Notifications
You must be signed in to change notification settings - Fork 18
Guidelines for editing mycontent.json
The table below contains a brief description of all fields in mycontent.json
Key | Description |
---|---|
Title | The name that appears on the title-bar of browser tab |
Name | Your name, appears in bold on landing page |
Description# | Short, LinkedIn style summary of yourself |
MainImage | Link to your profile photo. NOTE : This photo must be a square in dimensions. Use this tool to crop your photo quickly. |
BackgroundURL | Link to a background photo. Set this to "" to use the default circle-packing animation as background |
AboutImage | Link to a image you want to display in your About page |
AboutContent# | Paragraph style description of yourself |
WorkImage | Link to a image you want to display in your Work page |
WorkContent# | Paragraph style description of your work |
InternshipsStartLine | One-line intro about your Internships/Work Experience |
InternShips* | Information about your individual internships |
ProjectsStartLine | One-line intro about your Projects / Side Hustle |
Projects* | Information about your individual Projects |
CVStartLine | One-line intro about your ideal collaborations / workplace |
CV | Link to your online hosted CV |
Resume | Link to your online hosted Resume |
emailid wordpress github medium |
Links to your respective online profiles |
These are customizable inputs with the following format :
"InternShips":
[
{
"name": "Amazon India",
"link": "www.amazon.in"
},
]
Here, name
will be displayed as a list item, with a link to the url specified by link
field. The sample output of above input is :
This is known as an JSON Arrays ( in case you need to Google it ).
You can add any number of entries to such bulleted list separated by a comma. For example :
"InternShips":
[
{
"name": "Amazon India",
"link": "www.amazon.in"
},
{
"name": "Flipkart"
"link": "www.flipkart.com"
},
{
"name": "Snapdeal"
"link": "www.snapdeal.com"
},
]
This will output :
This type of input is simply a JSON Array of Strings.
These are customizable inputs with the following format :
"Description":
[
"Hello, my name is Tony" ,
"I am an Avenger" ,
"I am dead :( "
]
Here, all the elements seperated by a comma will be output as an individual paragraph. The sample output of above input is :
Hello, my name is Tony
I am an Avenger
I am dead :(
Contribute : If you feel that this beginner guide can be improved in any way possible, please reach out to me through any channel. Any feedback is much appreciated :)