Skip to content

imsurinder90/imsurinder90.github.com

 
 

Repository files navigation

My personal blog

This blog is using Left theme based on Jekyll.

Setup

Contributions are Welcome!

  • Fork this repository
  • Clone it: git clone https://github.com/imsurinder90/imsurinder90.github.com.git
  • Install ruby things: bundle install (if this doesn't work, look into installing Bundler)
  • Start it up: script/server

You should have a server up and running locally at http://localhost:4000.

Steps to change post content:

Project layout:

├── _config.yml
├── _includes
│   ├── head.html
│   └── sidebar.html
├── _layouts
│   ├── layout.html
│   └── post.html
├── _posts
│   ├── 2017-07-22-pgAdmin4?.markdown
│   ├── 2017-07-22-setup_pgAdmin4_in_desktop_mode.markdown
│   └── 2017-07-22-setup_pgAdmin4_in_server_mode.markdown
├── _site
│   ├── 404.html
│   ├── CNAME
│   ├── Gemfile
│   ├── Gemfile.lock
│   ├── LICENSE
│   ├── README.md
│   ├── about.html
│   ├── apple-touch-icon.png
│   ├── atom.xml
│   ├── css
│   │   ├── base.css
│   │   ├── mobile.css
│   │   └── pygments.css
│   ├── favicon.ico
│   ├── images
│   │   ├── hr.png
│   │   └── profile_pic.png
│   ├── index.html
│   ├── js
│   │   └── application.js
│   ├── posts
│   │   ├── pgAdmin4.html
│   │   ├── setup_pgAdmin4_in_desktop_mode.html
│   │   └── setup_pgAdmin4_in_server_mode.html
│   ├── script
│   │   └── server
│   └── sitemap.xml
├── about.html
├── apple-touch-icon.png
├── atom.xml
├── css
│   ├── base.scss
│   ├── mobile.scss
│   └── pygments.css
├── favicon.ico
├── images
│   ├── hr.png
│   └── profile_pic.png
├── index.html
├── js
│   └── application.js
└── script
    └── server
  1. Open post you want to change in _posts/ directory with your favourite editor.

  2. Save and close file after making changes in files.

  3. Set Remote Url to repository Url.

git remote set-url origin https://github.com/imsurinder90/imsurinder90.github.com.git
  1. Stash the changes you made:
git add filename1 filename2
  1. Commit and push the changes.
git commit -m "Add description of changes"
  1. git push

Licensing

MIT License

© 2017 Surinder Kumar (imsurinder90@gmail.com)

About

My personal blog for tutorials on pgAdmin4

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 60.7%
  • HTML 33.4%
  • Ruby 5.8%
  • JavaScript 0.1%