Skip to content

Commit 51a48a8

Browse files
committed
refactor and genericize items
1 parent cd7d3fb commit 51a48a8

39 files changed

+238
-735
lines changed

_articles/2009-10-01-paper-title-number-2.md

-15
This file was deleted.

_articles/2010-10-01-paper-title-number-2.md

-15
This file was deleted.

_config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ collections:
171171
teaching:
172172
output: true
173173
permalink: /:collection/:path/
174-
articles:
174+
publications:
175175
output: true
176176
permalink: /:collection/:path/
177177
portfolio:
@@ -212,10 +212,10 @@ defaults:
212212
author_profile: false
213213
share: false
214214
comments: false
215-
# _articles
215+
# _publications
216216
- scope:
217217
path: ""
218-
type: articles
218+
type: publications
219219
values:
220220
layout: single
221221
author_profile: true

_data/authors.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Authors
22

3-
Billy Rick:
4-
name : "Billy Rick"
5-
uri : "http://thewhip.com"
6-
email : "billy@rick.com"
7-
bio : "What do you want, jewels? I am a very extravagant man."
3+
Name Name:
4+
name : "Name Name"
5+
uri : "http://name.com"
6+
email : "name@name.com"
7+
bio : "This is the first name."
88
avatar : "bio-photo-2.jpg"
9-
twitter : "extravagantman"
10-
google_plus : "BillyRick"
9+
twitter : "name"
10+
google_plus : "Name"
1111

12-
Cornelius Fiddlebone:
13-
name : "Cornelius Fiddlebone"
14-
email : "cornelius@thewhip.com"
12+
Name2 Name2:
13+
name : "Name2 Name2"
14+
email : "name2@name2.com"
1515
bio : "I ordered what?"
1616
avatar : "bio-photo.jpg"
17-
twitter : "rhymeswithsackit"
18-
google_plus : "CorneliusFiddlebone"
17+
twitter : "name2"
18+
google_plus : "Name"

_data/navigation.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# main links links
22
main:
33
- title: "Publications"
4-
url: /articles/
4+
url: /publications/
55

66
- title: "Talks"
77
url: /talks/
8+
9+
- title: "Teaching"
10+
url: /teaching/
811

912
- title: "Portfolio"
1013
url: /portfolio/
@@ -13,7 +16,4 @@ main:
1316
url: /year-archive/
1417

1518
- title: "CV"
16-
url: /cv/
17-
18-
- title: "Contact"
19-
url: /contact/
19+
url: /cv/

_includes/archive-single.html

+13
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,19 @@
2525
alt="">
2626
</div>
2727
{% endif %}
28+
29+
{% if post.venue %}
30+
Published in <i>{{ post.venue }}</i>, {{ post.date | year }} </br>
31+
{% endif %}
32+
33+
{% if post.paperurl %}
34+
Download <a href=" {{ post.paperurl }} "> here</a> </br>
35+
{% endif %}
36+
37+
{% if post.citation %}
38+
Recommended citation: {{ post.citation }} </br>
39+
{% endif %}
40+
2841
<h2 class="archive__item-title" itemprop="headline">
2942
{% if post.link %}
3043
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ base_path }}{{ post.url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>

_pages/about.md

+165-12
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,173 @@ redirect_from:
1010

1111
{% include base_path %}
1212

13-
Hi! This is the front page of your Github Pages website. It can be long or it can be short.
13+
A variety of common markup showing how the theme styles them.
1414

15-
You can do anything that markdown does.
15+
# Header one
1616

17-
Heading One
18-
======
19-
You can have headings.
17+
## Header two
2018

21-
Heading Two
22-
------
23-
And subheadings
19+
### Header three
2420

21+
#### Header four
2522

26-
```python
27-
s = "You can have code blocks with syntax highlighting"
28-
print(s)
29-
```
23+
##### Header five
24+
25+
###### Header six
26+
27+
## Blockquotes
28+
29+
Single line blockquote:
30+
31+
> Quotes are cool.
32+
33+
## Tables
34+
35+
### Table 1
36+
37+
| Entry | Item | |
38+
| -------- | ------ | ------------------------------------------------------------ |
39+
| [John Doe](#) | 2016 | Description of the item in the list |
40+
| [Jane Doe](#) | 2019 | Description of the item in the list |
41+
| [Doe Doe](#) | 2022 | Description of the item in the list |
42+
43+
### Table 2
44+
45+
| Header1 | Header2 | Header3 |
46+
|:--------|:-------:|--------:|
47+
| cell1 | cell2 | cell3 |
48+
| cell4 | cell5 | cell6 |
49+
|-----------------------------|
50+
| cell1 | cell2 | cell3 |
51+
| cell4 | cell5 | cell6 |
52+
|=============================|
53+
| Foot1 | Foot2 | Foot3 |
54+
55+
## Definition Lists
56+
57+
Definition List Title
58+
: Definition list division.
59+
60+
Startup
61+
: A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
62+
63+
#dowork
64+
: Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
65+
66+
Do It Live
67+
: I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one.
68+
69+
## Unordered Lists (Nested)
70+
71+
* List item one
72+
* List item one
73+
* List item one
74+
* List item two
75+
* List item three
76+
* List item four
77+
* List item two
78+
* List item three
79+
* List item four
80+
* List item two
81+
* List item three
82+
* List item four
83+
84+
## Ordered List (Nested)
85+
86+
1. List item one
87+
1. List item one
88+
1. List item one
89+
2. List item two
90+
3. List item three
91+
4. List item four
92+
2. List item two
93+
3. List item three
94+
4. List item four
95+
2. List item two
96+
3. List item three
97+
4. List item four
98+
99+
## Buttons
100+
101+
Make any link standout more when applying the `.btn` class.
102+
103+
## Notices
104+
105+
**Watch out!** You can also add notices by appending `{: .notice}` to a paragraph.
106+
{: .notice}
107+
108+
## HTML Tags
109+
110+
### Address Tag
111+
112+
<address>
113+
1 Infinite Loop<br /> Cupertino, CA 95014<br /> United States
114+
</address>
115+
116+
### Anchor Tag (aka. Link)
117+
118+
This is an example of a [link](http://github.com "Github").
119+
120+
### Abbreviation Tag
121+
122+
The abbreviation CSS stands for "Cascading Style Sheets".
123+
124+
*[CSS]: Cascading Style Sheets
125+
126+
### Cite Tag
127+
128+
"Code is poetry." ---<cite>Automattic</cite>
129+
130+
### Code Tag
131+
132+
You will learn later on in these tests that `word-wrap: break-word;` will be your best friend.
133+
134+
### Strike Tag
135+
136+
This tag will let you <strike>strikeout text</strike>.
137+
138+
### Emphasize Tag
139+
140+
The emphasize tag should _italicize_ text.
141+
142+
### Insert Tag
143+
144+
This tag should denote <ins>inserted</ins> text.
145+
146+
### Keyboard Tag
147+
148+
This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the `<code>` tag.
149+
150+
### Preformatted Tag
151+
152+
This tag styles large blocks of code.
153+
154+
<pre>
155+
.post-title {
156+
margin: 0 0 5px;
157+
font-weight: bold;
158+
font-size: 38px;
159+
line-height: 1.2;
160+
and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
161+
}
162+
</pre>
163+
164+
### Quote Tag
165+
166+
<q>Developers, developers, developers&#8230;</q> &#8211;Steve Ballmer
167+
168+
### Strong Tag
169+
170+
This tag shows **bold text**.
171+
172+
### Subscript Tag
173+
174+
Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
175+
176+
### Superscript Tag
177+
178+
Still sticking with science and Isaac Newton's E = MC<sup>2</sup>, which should lift the 2 up.
179+
180+
### Variable Tag
181+
182+
This allows you to denote <var>variables</var>.

_pages/archive-layout-with-content.md

+6-48
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,15 @@ A variety of common markup showing how the theme styles them.
2222

2323
Single line blockquote:
2424

25-
> Stay hungry. Stay foolish.
26-
27-
Multi line blockquote with a cite reference:
28-
29-
> People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things.
30-
31-
<cite>Steve Jobs</cite> --- Apple Worldwide Developers' Conference, 1997
32-
{: .small}
25+
> Quotes are cool.
3326
3427
## Tables
3528

36-
| Employee | Salary | |
29+
| Entry | Item | |
3730
| -------- | ------ | ------------------------------------------------------------ |
38-
| [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. |
39-
| [Jane Doe](#) | $100K | For all the blogging she does. |
40-
| [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. |
41-
| [Jane Bloggs](#) | $100B | With hair like that?! Enough said. |
31+
| [John Doe](#) | 2016 | Description of the item in the list |
32+
| [Jane Doe](#) | 2019 | Description of the item in the list |
33+
| [Doe Doe](#) | 2022 | Description of the item in the list |
4234

4335
| Header1 | Header2 | Header3 |
4436
|:--------|:-------:|--------:|
@@ -98,40 +90,6 @@ Do It Live
9890

9991
Make any link standout more when applying the `.btn` class.
10092

101-
```html
102-
<a href="#" class="btn--success">Success Button</a>
103-
```
104-
105-
[Primary Button](#){: .btn}
106-
[Success Button](#){: .btn .btn--success}
107-
[Warning Button](#){: .btn .btn--warning}
108-
[Danger Button](#){: .btn .btn--danger}
109-
[Info Button](#){: .btn .btn--info}
110-
[Inverse Button](#){: .btn .btn--inverse}
111-
[Light Outline Button](#){: .btn .btn--light-outline}
112-
113-
```markdown
114-
[Primary Button Text](#link){: .btn}
115-
[Success Button Text](#link){: .btn .btn--success}
116-
[Warning Button Text](#link){: .btn .btn--warning}
117-
[Danger Button Text](#link){: .btn .btn--danger}
118-
[Info Button Text](#link){: .btn .btn--info}
119-
[Inverse Button](#link){: .btn .btn--inverse}
120-
[Light Outline Button](#link){: .btn .btn--light-outline}
121-
```
122-
123-
[X-Large Button](#){: .btn .btn--x-large}
124-
[Large Button](#){: .btn .btn--large}
125-
[Default Button](#){: .btn}
126-
[Small Button](#){: .btn .btn--small}
127-
128-
```markdown
129-
[X-Large Button](#link){: .btn .btn--x-large}
130-
[Large Button](#link){: .btn .btn--large}
131-
[Default Button](#link){: .btn}
132-
[Small Button](#link){: .btn .btn--small}
133-
```
134-
13593
## Notices
13694

13795
**Watch out!** You can also add notices by appending `{: .notice}` to a paragraph.
@@ -147,7 +105,7 @@ Make any link standout more when applying the `.btn` class.
147105

148106
### Anchor Tag (aka. Link)
149107

150-
This is an example of a [link](http://apple.com "Apple").
108+
This is an example of a [link](http://github.com "Github").
151109

152110
### Abbreviation Tag
153111

0 commit comments

Comments
 (0)