Skip to content

tothlp/tothlp.github.io

Repository files navigation

Landing page

Website GitHub last commit (branch) GitHub deployments

This repo hosts my Landing page. It uses Jekyll to create the static site, and Github Pages for hosting. The site uses the sproogen/modern-resume-theme template, huge shoutout to its author, James Grant.

Running

Install the dependencies:

bundle install

Run the server:

bundle exec jekyll serve

Configuration options

The soul of the site lies within _config.yml. In the following, you can see the different options.

Site

repository: tothlp/tothlp.github.io
favicon: images/favicon.ico
# Dark Mode (true/false/never)
darkmode: true

Content configuration version

version: 2

Last update

last_update: &last_update #date

Personal info

name: &author 
title: 
email: 
email_title: #title, or custom icon, eg.: <i class="far fa-envelope"></i>
phone: # or other info, like location
phone_title: #title, or custom icon, eg.: <i class="far fa-envelope"></i>
website: 
website_title:

Social links

twitter_username: 
github_username:  
#stackoverflow_username: ""
#dribbble_username: 
#facebook_username: 
#flickr_username: 
# instagram_username: 
# linkedin_username: 
#xbox_username: 
#xing_username: 
#pinterest_username: 
#youtube_username: 
#orcid_username: 0000-0000-0000-0000
#googlescholar_username: 

Additional icon links

additional_links: #custom links for the upper navigation
- title: Telegram
  icon: fab fa-telegram # Use fontawesome here
  url: 

Google Analytics and Tag Manager

Using more than one of these may cause issues with reporting

# gtm: ""
gtag: ""
# google_analytics: ""

About Section

about_title: Rólam
about_profile_image: images/profile.jpg
about_content: | # this will include new lines to allow paragraphs
content:
  - title: #Feel free to include html and icons: <small><i class="fas fa-tools"></i> </small>  Skills   <small><i class="fas fa-feather"></i></small>
    layout: # text or list
    content: |

  - title: Projektek # Title for the section
    layout: list # Type of content section (list/text)
    content:
      - layout: # center (not working) / left / right
      # border: weak #// or no value.
        title: 
        link: 
        #link_text: Link Text
        sub_title: 
        caption:
        description: |

        quote: >  
            > 
        additional_links: 
          - title:  Github repo
            icon: fab fa-github
            url: https://github.com
        

Footer

footer_show_references: true
references_title: *last_update

Build settings

#theme: modern-resume-theme
remote_theme: sproogen/modern-resume-theme

sass:
  sass_dir: _sass
  style: compressed

plugins:
 - jekyll-seo-tag

exclude : [
  "Gemfile",
  "Gemfile.lock",
  "node_modules",
  "vendor/bundle/",
  "vendor/cache/",
  "vendor/gems/",
  "vendor/ruby/",
  "lib/",
  "scripts/",
  "docker-compose.yml",
  "tothlp.github.io.code-workspace"
  ]