GithubHelp home page GithubHelp logo

excentris / compass Goto Github PK

View Code? Open in Web Editor NEW
192.0 6.0 330.0 65 KB

The Jekyll theme for your personal landing page.

Home Page: https://excentris.github.io/compass/

License: MIT License

Ruby 0.71% CSS 38.95% HTML 60.34%
jekyll jekyll-themes

compass's Introduction

Documentation

Compass is a Jekyll theme designed with something very specific in mind: to be a simple and elegant personal landing page that can be easily deployed to GitHub Pages.

How to use Compass

  1. Start by installing Bundler gem install bundler
  2. Fork the Compass repository
  3. Clone the repository you just forked: git clone https://github.com/YOUR-USER/compass
  4. Then run bundle install to get Jekyll and all the dependencies.
  5. Edit _config.yml as needed.
  6. Run the Jekyll server with bundle exec jekyll serve
  7. Go to http://localhost:4000

Deploy your site to GitHub Pages

If you want to use Compass as your personal landing page you can deploy your site to GitHub Pages as a User Page. To do so, when you are done modifying your clone, you should rename your repository to username.github.io where username is your username. When GitHub builds the page it will be made available at https://username.github.io.

If you are planning on using a custom domain to direct to your site, modify the CNAME file as described here.

Check the GitHub Pages Basics for more information.

compass's People

Contributors

aelsaman avatar claman avatar dhashe avatar excentris avatar projjol avatar sanujar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

compass's Issues

Failed to load the google font "Vollkorn" specified in head.html Due to using http instead of https

Hello
thanks for the nice template, I like it.
However, when I tried to fork and host on Github.io, The page failed to load the font from "http://fonts.googleapis.com" and I got the below error (using google chrome) :
this page is trying to load scripts from unauthenticated sources in a browser popup.

I updated the source code to use https instead of http in the link to google fonts and it works fine.
#7

All urls in site index file pointing to localhost

I remember having this problem before. When serving to GitHub Pages, assets aren't found. I've checked my config, the content.html file, and the _site index file. Currently, the index.html file in _site looks like this:

<!DOCTYPE html>
<html>

  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tiffany White &#8226; Check Yo Self: A Markdown Grammar Checker for Blog Posts</title>

    <link rel="apple-touch-icon" href="/images/chys.png" />
    <link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48 64x64" href="http://localhost:4000/favicon.ico" />

    <link rel="stylesheet" href="/checkyoself/docs/assets/normalize.css">
    <link rel="stylesheet" href="/checkyoself/docs/assets/main.css">
    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
    <link href='https://fonts.googleapis.com/css?family=Vollkorn' rel='stylesheet' type='text/css'>

    <link rel="canonical" href="http://localhost:4000/">

    <meta name="author" content="Tiffany White">
    <meta name="description" content="Check Yo Self: A Markdown Grammar Checker for Blog Posts" />

    <meta property="og:title" content="Check Yo Self: A Markdown Grammar Checker for Blog Posts" />
    <meta property="og:url" content="http://localhost:4000/" />
    <meta property="og:image" content="http://localhost:4000/checkyoself/docs/images/chys.png" />
    <meta property="og:description" content="" />
    <meta property="og:site_name" content="Check Yo Self: A Markdown Grammar Checker for Blog Posts">
    <!-- Here you can add your Google Analytics Tracking code. If you do so, do not
forget to set the include_analytics attribute to true on the _config.yml file -->

  </head>

  <body>

    <div class="wrapper">
      <header>

        <div class="logo-container">
          <a class="logo" href="" style="background-image: url('/checkyoself/docs/images/chys.png')"></a>
        </div>



        <div class="author-container">
          <h1>Tiffany White</h1></div>



        <div class="tagline-container">
          <p>Check Yo Self: A Markdown Grammar Checker for Blog Posts</p>
        </div>

      </header>
      <main>

        <div class="content">
          <h2>About Check Yo Self</h2>
          <p>Check Yo Self has a simple purpose: to check your markdown for grammatical errors and misspellings.</p>

          <h2>Features</h2>
          <ul>
            <li>Responsive design</li>
            <li>Mobile friendly</li>
            <li>You can pick up right were you left off with an account.</li>
          </ul>

          <p>For more information, including setup and configuration instructions, head over to <a href="https://twhite96.gitub.com/checkyoself/documentation">The Docs</a>.</p>
          <p>For bug reports and feature requests, pop on over to <a href="https://github.com/twhite96/checkyoself/issues">GitHub</a> and leave an issue.</p>

          <hr />

          <ul class="fa-ul main-list">
            <li class="main-list-item">
              <span class="fa fa-github fa-lg main-list-item-icon"></span>
              <a href="https://github.com/twhite96/checkyoself">GitHub Repository</a>
            </li>
            <li class="main-list-item">
              <span class="fa fa-user fa-lg main-list-item-icon"></span>
              <a href="https://twitter.com/TiffanyW_412">The Author</a>
            </li>
          </ul>

        </div>

      </main>
    </div>


  </body>

</html>

As you can see, some of these files are being served via localhost. Not sure how to solve it.

My repo

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.