1
0
Fork 0
mirror of https://github.com/dilllxd/gitfolio.git synced 2024-08-14 22:28:09 +00:00
A gitfolio fork that automatically deploys the output to GitHub Pages using Travis CI, and changed to fit what I want lol.
Find a file
imfunny 9c3538a387
added commits by @DonIsaac & @Chargnn
* Created site files are now placed in an output directory `dist`
* Added a ton of comments in build.js
* Made functions in build.js use bluebird promises
* Themes are now in the assets/templates folder instead as magic
strings in the source code
* Any number of custom themes (not just light and dark) can be used by creating
a [theme].css file and putting it in assets/themes
* CSS themes are rendered with Handlebars
* CSS themes now rely on Handlebars for specifying the background 
* Restored config.json to template file
* Changes to the blogging 
* Moved blog templates and config files to assets/blog
* Created blog pages now go to dist/blog/
* Updated blogTemplate
* Updated the README to reflect the changes made by this pull request
* Added link to demo site in README
* Added sorting and ordering
2019-05-20 14:52:19 +05:30
.github/ISSUE_TEMPLATE Add issue templates. (#31) 2019-05-20 08:51:30 +05:30
assets added commits by @DonIsaac & @Chargnn 2019-05-20 14:52:19 +05:30
dist added commits by @DonIsaac & @Chargnn 2019-05-20 14:52:19 +05:30
.gitignore Added A Suite of Improvements (#25) 2019-05-20 13:08:30 +05:30
blog.js added commits by @DonIsaac & @Chargnn 2019-05-20 14:52:19 +05:30
build.js added commits by @DonIsaac & @Chargnn 2019-05-20 14:52:19 +05:30
CODE_OF_CONDUCT.md added commits by @DonIsaac & @Chargnn 2019-05-20 14:47:39 +05:30
LICENSE v0.1.1 2019-05-09 21:49:54 +05:30
package-lock.json Added A Suite of Improvements (#25) 2019-05-20 13:08:30 +05:30
package.json Added A Suite of Improvements (#25) 2019-05-20 13:08:30 +05:30
populate.js added commits by @DonIsaac & @Chargnn 2019-05-20 14:52:19 +05:30
README.md added commits by @DonIsaac & @Chargnn 2019-05-20 14:52:19 +05:30
update.js added commits by @DonIsaac & @Chargnn 2019-05-20 14:47:39 +05:30

Gitfolio Tweet GitHub release GitHub top language GitHub last commit GitHub

personal website + blog for every github user

Gitfolio will help you get started with a portfolio website where you could showcase your work + a blog that will help you spread your ideas into real world.

Check out this live demo to see gitfolio in action.

Getting Started

Let's Build

a. Clone this repo or simply download it.

git clone https://github.com/imfunniee/gitfolio.git

b. cd into the repo you just cloned or downloaded.

cd gitfolio # Navigate into the project folder
npm i # Install the required dependencies

c. Gitfolio is now ready to be used. The command

node build --name [username]

Will build your website using your GitHub username and put it in the dist/ folder.

d. To run your website navigate to ./dist/index.html in your browser. [you won't see blogs until you are on localhost]

🎉 Congrats, you just made yourself a personal website!

if you get stuck somewhere or get an error, please create an issue

Let's Customize

Enabling Themes

Themes are specified using the --theme [theme-name] flag when running the build command. The available themes are

  • light
  • dark

TODO: Add more themes

For example, the following command will build the website with the dark theme

$ node build --name username --theme dark

Customize background image

To customize the background image just provide --background [url] argument while building

$ node build --name username --background https://images.unsplash.com/photo-1557277770-baf0ca74f908?w=1634

You could also add in your custom CSS inside index.css to give it a more personal feel.

Let's Publish

Head over to GitHub and create a new repository named username.github.io, where username is your username. Push the files inside/dist folder to repo you just created.

Go To username.github.io your site should be up!!

Updating

To update your info, simply run

$ node update

This will update your info and your repository info.

To Update background or theme you need to run build command again.

Add a Blog

To add your first blog run this command, make sure the title don't have spaces instead use "-".

$ node blog --title my-first-blog

This will create a my-first-blog folder inside blog. Inside my-first-blog you will find an index.html file which contains all the necessary elements for writing a blog. Customize the content of the file to write your first blog.

This also adds content to blog.json file. This file helps in showcasing your blogs on your personal website as cards. You could customize the JSON object that corresponds your current blog.

Blog Demo? here

Default JSON Format

{
  "url_title": "my-first-blog", // the title you provide while creating a new blog, this appears in url
  "title": "Lorem ipsum dolor sit amet", // main title of blog
  "sub_title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", // sub-title of blog
  "top_image": "https://images.unsplash.com/photo-1553748024-d1b27fb3f960?w=1450", // main image of blog
  "visible": true // don't worry about this
}

More Arguments for Blog

--subtitle [subtitle] : gives blog a subtitle (Deafult : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.')
--pagetitle [pagetitle] : gives blog page a title
--folder [folder] : give folder a title

(use "-" instead of spaces)

License

GitHub