Giter VIP home page Giter VIP logo

daydream-theme's Introduction

Daydream

Welcome to my Jekyll theme, its pretty basic, there isn't really much more too it.\

Picture of the theme

A live demo can also be seen here.

Theme is also somewhat mobile friendly!

This theme should be accessability friendly as its just HTML and CSS, but no gaurantees there, I am not a frontend developer.

Photo by Wolfgang Hasselmann on Unsplash

Installation

Standalone Jekyll

Add this line to your Jekyll site's Gemfile:

gem "daydream-theme"

And add this line to your Jekyll site's _config.yml:

theme: daydream-theme

as well as

cover: /assets/img/bg.jpg

And then execute:

$ bundle

Or install it yourself as:

$ gem install daydream

Github Pages

To install on github pages instead add this line to your GemFile under the jekyll plugins group:

  gem "jekyll-remote-theme"

then in your Jekyll site's _config.yml:

remote_theme: williambenembarek/daydream-theme

Usage

Edit config, replace bg.jpg if you want to, add a picture called me.jpg in assets/me.jpg to include a picture.

_config.yml fields

Following fields are added on top of the default config.

tagline: This is the tagline bewlow the title
cover: define a custom sidebar image

Navigation

For navigation links create the folder _data and within it the file navigation.yml, use the following format.

- title: Home
  url: /
- title: ...
  url: /.../

Social

For social links create the folder _data and within it the file social.yml, use the following format.

- title: Email
  url: mailto:<name>@<domain>
  icon: fas fa-envelope
- title: Twitter
  url: https://twitter.com/<username>
  icon: fab fa-twitter

Creating a default home page

In the root of the website create a index.md file, in here include the frontmatter

---
layout: page
title: <TITLE HERE>
permalink: /
---

Creating an overview of all posts

If you added a default home page you would then have lost the default overview of all posts, this is probably the wrong way to go about things but here is how I fixed it. In the root of the website create a posts.md file, in here paste the following.

---
layout: page
title: Posts
permalink: /posts/
---
<ul>

  {% for post in site.posts %}
    <li>
      <a href="{{ post.url }}">
        {{ post.title }}
      </a>
      - <time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date_to_long_string }}</time>
    </li>
    {% if post.excerpt %}
        {{ post.excerpt | truncate: 256 }}  
    {% endif %}
  {% endfor %}

Removing / Editing the "Made with ❤️ by William Ben Embarek" from the footer

Create the folder _includes. Within it create the file footer.html Paste in the following and edit it

<footer class="footer">
    <small>
      Made with ❤️ by <a ref=https://github.com/williambenembarek>William Ben Embarek</a>
    </small>
</footer>

TODO

  • Add dark mode toggle, if you end up implementing this please send me a PR! Would be apprciated :)
  • Make mobile friendly (Somewhat done, can 100% be improved)

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/williambenembarek/daydream-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Development

To set up your environment to develop this theme, run bundle install.

Your theme is setup just like a normal Jekyll site! To test your theme, run bundle exec jekyll serve and open your browser at http://localhost:4000. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.

When your theme is released, only the files in _layouts, _includes, _sass and assets tracked with Git will be bundled. To add a custom directory to your theme-gem, please edit the regexp in daydream.gemspec accordingly.

License

The theme is available as open source under the terms of the High Five License.

daydream-theme's People

Contributors

williambenembarek avatar

Stargazers

 avatar

Watchers

 avatar

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.