All Projects β†’ artsy β†’ Artsy.github.io

artsy / Artsy.github.io

Licence: mit
The Artsy Engineering Open-Source Developers Blog

Projects that are alternatives of or similar to Artsy.github.io

Jekyll Klise
πŸ– KlisΓ© is a minimalist Jekyll theme for running a personal site or blog, light & dark mode support. (https://klise.now.sh)
Stars: ✭ 312 (-59.48%)
Mutual labels:  blog, jekyll, scss
Long Haul
A minimal, type-focused Jekyll theme.
Stars: ✭ 524 (-31.95%)
Mutual labels:  blog, jekyll, scss
Reverie
🎨 A ridiculously elegant Jekyll theme.
Stars: ✭ 442 (-42.6%)
Mutual labels:  blog, jekyll, scss
Chalk
Chalk is a high quality, completely customizable, performant and 100% free Jekyll blog theme.
Stars: ✭ 987 (+28.18%)
Mutual labels:  blog, jekyll, scss
Gaohaoyang.github.io
blog & blog theme🀘
Stars: ✭ 1,699 (+120.65%)
Mutual labels:  blog, jekyll, scss
Znlbwo.github.io
Stars: ✭ 65 (-91.56%)
Mutual labels:  blog, jekyll, scss
Jalpc
🍎Jalpc -- A flexible Jekyll theme, 3 steps to build your website.
Stars: ✭ 859 (+11.56%)
Mutual labels:  blog, jekyll, scss
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (-71.04%)
Mutual labels:  blog, jekyll, scss
Jekyll Theme Prologue
A Jekyll version of the "Prologue" theme by HTML5 UP
Stars: ✭ 346 (-55.06%)
Mutual labels:  blog, jekyll, scss
Bleak
Ghost Theme
Stars: ✭ 497 (-35.45%)
Mutual labels:  blog, scss
Alembic
βš—οΈ A Jekyll boilerplate theme designed to be a starting point for any Jekyll website
Stars: ✭ 501 (-34.94%)
Mutual labels:  jekyll, scss
Mqtt.org
The mqtt.org website
Stars: ✭ 4,776 (+520.26%)
Mutual labels:  scss, jekyll
Cayman
Cayman is a Jekyll theme for GitHub Pages
Stars: ✭ 719 (-6.62%)
Mutual labels:  jekyll, scss
Lagrange
A minimalist Jekyll theme for running a personal blog
Stars: ✭ 454 (-41.04%)
Mutual labels:  blog, jekyll
Jekflix Template
A Jekyll theme inspired by Netflix. 🎬
Stars: ✭ 504 (-34.55%)
Mutual labels:  blog, jekyll
Hydeout
A refreshed version of Hyde for Jekyll 3.x and 4.x
Stars: ✭ 448 (-41.82%)
Mutual labels:  jekyll, scss
Jekyll Theme Basically Basic
Your new Jekyll default theme
Stars: ✭ 524 (-31.95%)
Mutual labels:  jekyll, scss
Flexible Jekyll
Flexible-Jekyll is a simple and clean theme for Jekyll
Stars: ✭ 531 (-31.04%)
Mutual labels:  jekyll, scss
Dbyll
Stylish, minimalistic theme for jekyll.
Stars: ✭ 534 (-30.65%)
Mutual labels:  blog, jekyll
Jekyll Theme Next
Elegant theme for Jekyll.
Stars: ✭ 676 (-12.21%)
Mutual labels:  blog, jekyll

Build Status

The Artsy OSS page and the blog runs on top of a default jekyll install. If you would like an overview of jekyll, their website rocks.

Setup

git clone [email protected]:artsy/artsy.github.io.git
cd artsy.github.io
bundle
bundle exec rake bootstrap
bundle exec rake build

License

The code in this repository is released under the MIT license. The contents of the blog itself (ie: the contents of the _posts directory) are released under +Creative Commons Attribution 4.0 International License.

Running the OSS Site / Blog locally

Running rake serve will not generate category pages. They take a long time to generate. No one wants that when working on the site.

  bundle exec rake serve

Categories are generated when the ENV var PRODUCTION = "YES".

Deploying

Travis CI will automatically deploy when new commits are pushed to the source branch, so you should not need to deploy from your local computer. However, if you need to deploy locally, the rake deploy command is available.

Adding an Author

Authors are key-value stored, so you will need to give yourself a key inside _config.yml - for example:

joey:
  name: Joey Aghion
  github: joeyAghion
  twitter: joeyAghion
  site: http://joey.aghion.com

Everything but name is optional.

Authoring an Article

Note: we now have some templates to help get you started writing a blog post. Check out the Post-Templates directory.

TLDR To generate a new post, create a new file in the _posts directory. Be sure to add your name as the author of the post and include several categories to file the post under. Here is a sample header YAML:

Note: categories are aggregated from the individual posts, so adding one is as easy as adding it to your post!

---
layout: post
title: "Responsive Layouts with CSS3"
date: 2012-01-17 11:03
comments: true
author: Matt McNierney
github-url: https://www.github.com/mmcnierney14
twitter-url: http://twitter.com/mmcnierney
blog-url: http://mattmcnierney.wordpress.com
categories: [Design, CSS, HTML5]
---

More info can be found in the Jekyll docs.

When you have authored an article, git add and git commit it, then push to a named branch with git push origin [branch], and create a pull request to the source branch, it will be deployed to the site by travis when merged.

Enabling Comments

Comments for articles are managed with Issues in this GitHub repository.

Create an issue for the article

Quote the opening paragraph(s) of the post as the body of the issue, and name it something like "Comments: My Fantastic New Post".

Add the Comment Thread label to the issue

Attach the issue to your article

Copy the created issue ID; add it to the frontmatter YAML of your post, as the comment_id attribute:

comment_id: 1234

After Deploying an Article

Every article on our blog needs one more thing: a snappy tweet! You can ask Ash or Orta to do this for you, but you're also welcome to log into the @ArtsyOpenSource twitter account and tweet yourself (credentials are in the Engineering 1Password vault). Tweets usually follow the following format:

[pithy observation] [description of problem] [@ the article author's twitter handle]

πŸ“ [link to blog post]
πŸ’» [link to GitHub repo, if applicable]
πŸ“· [attach a screenshot of the first few paragraphs of the post]

We attach screenshots of the post because tweets with images get more traction. But! Images aren't accessible to screen readers, so make sure to use the twitter.com web interface and add a description to the image when posting:

Screenshot of the title and first two paragraphs of the linked-to blog post.

You can look at previous tweets from our account to get a feel for these. If you'd like help, just ask in Slack.

Authoring a Podcast Episode

To add a new episode of the podcast, configure your local AWS environment. The easiest is in environment variables stored in ~/.zshrc or equivalent.

export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=

After you have set up the environment, run the following rake task.

rake podcast:new_episode /path/to/local/mp3

This will add required YAML to _config.yml. You'll need to fill in some other fields manually; when finished it'll look like this:

- title: Name of your episode
  date: (generated by Rake task)
  description: A paragraph-long description of the episode.
  podcast_url: (generated by Rake task)
  file_byte_length: (generated by Rake task)
  duration: (generated by Rake task)

About Artsy

This project is the work of engineers at Artsy, the world's leading and largest online art marketplace and platform for discovering art. One of our core Engineering Principles is being Open Source by Default which means we strive to share as many details of our work as possible.

You can learn more about this work from our blog and by following @ArtsyOpenSource or explore our public data by checking out our API. If you're interested in a career at Artsy, read through our job postings!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].