Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3 #4

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open

v3 #4

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
name: GitHub Pages
on:
push:
branches:
- master

jobs:
deploy:
name: Deploy
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
DEPLOY_DIR: _site/
DEPLOY_BRANCH: gh-pages
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Prepare branch
run: |
Expand Down Expand Up @@ -69,7 +67,7 @@ jobs:
if: ${{ needs.bump_version.outputs.new_tag != null }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand Down
11 changes: 3 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
source "https://rubygems.org"
# frozen_string_literal: true

gem "github-pages", group: :jekyll_plugins do
gem 'jekyll-katex'
gem 'jekyll-sitemap'
gem 'jekyll-feed'
gem 'jekyll-github-metadata'
end
source "https://rubygems.org"

gem "webrick", "~> 1.7"
gem "github-pages", group: :jekyll_plugins
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# [primitives](https://sambacha.github.io/primitives/)

[![jekyll](https://github.com/manifoldfinance/primitives/actions/workflows/jekyll.yml/badge.svg)](https://github.com/manifoldfinance/primitives/actions/workflows/jekyll.yml)

---

> a (shared) engineering blog
> a (shared) engineering blog



![](https://d.pr/i/6QoIU0.jpg)
70 changes: 8 additions & 62 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,101 +1,47 @@
# Site settings
title: Primitives
lang: en-US

description: Engineering Blog
header_img: /assets/img/home.jpeg

owner: manifoldfinance
published_at: 2022
repository: manifoldfinance/primitives
baseurl: /primitives
owner: sambacha
published_at: 2021

# Sidebar settings
sidebar: true
sidebar_avatar: /assets/img/avatar.jpeg
sidebar_about_description:
Engineering blog for Ethereum, Systems and Mechanism design and architecture
sidebar_about_description: 0xJanitor

RSS: true
email: [email protected]
github_username: manifoldfinance
# Publish posts or collection documents with a future date.
future: true
twitter_username: foldfinance
github_username: sambacha

# Google Analytics settings (https://analytics.google.com/)
ga_measurement_id:

# Comments settings (https://utteranc.es/)
# You must use your own repository, otherwise it won't work.
#comments_repository: manifoldfinance/comments

comments_repository: sambacha/comments

# Build settings
paginate: 10
timezone: US/Pacific
highlighter: rouge
permalink: pretty
anchorjs: true # if you want to customize anchor. check out line:181 of `post.html`

markdown: kramdown
timezone: UTC
kramdown:
input: GFM # use Github Flavored Markdown !important
syntax_highlighter_opts:
span:
line_numbers: false
block:
line_numbers: true
start_line: 1

collections:
pages:
output: true
permalink: /:path
permalink: /:path/
defaults:
- scope:
path: _posts
values:
layout: post

plugins:
- jekyll-feed
- jekyll-paginate
- jekyll-seo-tag
- jekyll-sitemap
- jemoji
- rouge
- jekyll-katex


# Blog archives
#
# Docs: https://github.com/jekyll/jekyll-archives/
jekyll-archives:
enabled:
- year
layout: posts-year
permalinks:
year: '/:year/'

# Friends
friends: [
{ title: "BLOG_1", href: "http://manifoldfinance.com" },
{ title: "NEWSLETTER_1", href: "http://manifoldfinance.com" },
{ title: "BLO_2", href: "http://manifoldfinance.com" },
]

exclude: [
"less",
"node_modules",
"Gruntfile.js",
"package.json",
"README.md",
".github/",
"Makefile",
"dev-server",
"configure",
"webpack.config.js",
"yarn.lock",
"Gemfile.lock" ,
"*.sh"
]
62 changes: 0 additions & 62 deletions _includes/about/en.md

This file was deleted.

Loading