Skip to content

Commit

Permalink
Borrow from SAMPL template
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen committed Oct 31, 2020
1 parent d545af8 commit b1e8b27
Show file tree
Hide file tree
Showing 33 changed files with 571 additions and 399 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
_site
_includes/pubs.html
/test-deploy.sh
*~
*.DS_Store
.jekyll-cache
__pycache__
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# targets that aren't filenames
.PHONY: all clean deploy build serve
.PHONY: all clean deploy build serve pub

all: build
all: build pub

BIBBLE = bibble
BIBBLE = python3 -m bibble.main

_includes/pubs.html: bib/pubs.bib bib/publications.tmpl
pub: bib/pubs.bib bib/publications.tmpl
mkdir -p _includes
$(BIBBLE) $+ > $@
$(BIBBLE) $+ > _includes/pubs.html

build: _includes/pubs.html
build: pub
jekyll build

# you can configure these at the shell, e.g.:
Expand Down
23 changes: 6 additions & 17 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: SAML
url: http://uwsaml.github.io # Update to be CS web address
name: Catalyst
url: https://cmu-catalyst.github.io

exclude: [bibble, README.md, Makefile, screenshot.png]

# Colorize code snippets with the rogue module if we want to deploy on GH.
highlighter: rogue
highlighter: rouge

# The path structure for blog posts.
permalink: /blog/:year/:month/:day/:title.html
Expand All @@ -13,20 +13,11 @@ permalink: /blog/:year/:month/:day/:title.html
roles:
- key: faculty
name: Faculty
- key: staff
name: Staff
- key: postdoc
name: Researchers
# Restore me when we add some staff
# - key: staff
# name: Staff
- key: grad
name: Graduate Students
- key: ugrad
name: Undergraduate Students
- key: ugrad-alum
name: Past Undergraduate Students
- key: collab
name: Collaborators
- key: alum
name: Alumni

# Number of news stories on the front page.
front_page_news: 8
Expand All @@ -49,5 +40,3 @@ navigation:
link: /research.html
- title: Publications
link: /publications.html
- title: Code
link: /code.html
Loading

0 comments on commit b1e8b27

Please sign in to comment.