Skip to content

Commit fcc9463

Browse files
committed
first commit
1 parent 627ff8c commit fcc9463

File tree

173 files changed

+7513
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+7513
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata
5+
public

config.toml

Lines changed: 193 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
baseurl = "https://example.com/" # End your URL with a `/` trailing slash.
2+
title = "Academic"
3+
copyright = "© 2016 Your Name"
4+
theme = "hugo-academic"
5+
enableEmoji = true
6+
footnotereturnlinkcontents = "<sup>^</sup>"
7+
8+
# Enable comments by entering your Disqus shortname
9+
disqusShortname = ""
10+
11+
# Enable analytics by entering your Google Analytics tracking ID
12+
googleAnalytics = ""
13+
14+
# Default language to use (if you setup multilingual support)
15+
defaultContentLanguage = "en"
16+
defaultContentLanguageInSubdir = false
17+
18+
[blackfriday]
19+
hrefTargetBlank = true
20+
21+
[params]
22+
name = "Lena Smith"
23+
role = "Professor of Artificial Intelligence"
24+
organization = "Stanford University"
25+
organization_url = ""
26+
gravatar = false # Get your avatar from Gravatar.com? (true/false)
27+
avatar = "portrait.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
28+
29+
address = "Building 1 Room 1, Stanford University, California, 90210, USA"
30+
office_hours = "Monday 10:00 to 13:00 or email for appointment"
31+
phone = "888 888 88 88"
32+
skype = "echo123"
33+
telegram = ""
34+
35+
# Enable Keybase in Contact section by entering your keybase.io username.
36+
keybase = ""
37+
38+
# Date format (refer to Go's date format: http://flippinggodateformat.com )
39+
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
40+
date_format = "Mon, Jan 2, 2006"
41+
42+
# Enable global LaTeX math rendering?
43+
# If false, you can enable it locally on a per page basis.
44+
math = false
45+
46+
# Highlight.js options
47+
# highlight
48+
# Enable global source code highlighting? If false, you can
49+
# override it for a particular page in that page's preamble.
50+
#
51+
# Example: highlight = true
52+
#
53+
# highlight_languages
54+
# Add support for highlighting additional languages. Support for
55+
# languages mentioned here will be included in all pages. You
56+
# can also set this variable for a particular page in that
57+
# page's preamble.
58+
#
59+
# Example: highlight_languages = ["go", "lisp", "ocaml"]
60+
#
61+
# highlight_style
62+
# Choose a different CSS style for highlighting source
63+
# code. Setting this option in a page's preamble has no
64+
# effect.
65+
#
66+
# Example: highlight_style = "github-gist"
67+
#
68+
# highlight_version
69+
# Choose the version of highlight.js you want. Setting this
70+
# option in a page's preamble has no effect.
71+
#
72+
# Example: highlight_version = "9.9.0"
73+
#
74+
# For the list of supported languages, styles, and versions, see:
75+
# https://cdnjs.com/libraries/highlight.js/
76+
#
77+
# For more info on the highlighting options, see:
78+
# https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options
79+
highlight = true
80+
highlight_languages = []
81+
# highlight_style = "github"
82+
# highlight_version = "9.9.0"
83+
84+
# Enable native social sharing buttons?
85+
sharing = true
86+
87+
# Link custom CSS and JS assets
88+
# (relative to /static/css and /static/js respectively)
89+
custom_css = []
90+
custom_js = []
91+
92+
# Publication types.
93+
# Used to categorize publications.
94+
# The index of the publication type in the list is used as its unique numerical identifier.
95+
# The numeric ID is used in a publication's frontmatter to categorize it.
96+
# The language can be edited below.
97+
# For multi-lingual sites, copy this block to each language section at the end of this file.
98+
publication_types = [
99+
'Uncategorized', # 0
100+
'Conference proceedings', # 1
101+
'Journal', # 2
102+
'Work in progress', # 3
103+
'Technical report', # 4
104+
'Book', # 5
105+
'Book chapter' # 6
106+
]
107+
108+
# Social/Academic Networking
109+
#
110+
# Icon pack "fa" includes the following social network icons:
111+
#
112+
# twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
113+
# youtube, instagram, soundcloud
114+
#
115+
# For email icon, use "fa" icon pack, "envelope" icon, and
116+
# "mailto:[email protected]" as the link.
117+
#
118+
# Full list: https://fortawesome.github.io/Font-Awesome/icons/
119+
#
120+
# Icon pack "ai" includes the following academic network icons:
121+
#
122+
# google-scholar, arxiv, orcid, researchgate, mendeley
123+
#
124+
# Full list: https://jpswalsh.github.io/academicons/
125+
126+
[[params.social]]
127+
icon = "envelope"
128+
icon_pack = "fa"
129+
link = "mailto:[email protected]"
130+
131+
[[params.social]]
132+
icon = "twitter"
133+
icon_pack = "fa"
134+
link = "//twitter.com/GeorgeCushen"
135+
136+
[[params.social]]
137+
icon = "google-scholar"
138+
icon_pack = "ai"
139+
link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
140+
141+
[[params.social]]
142+
icon = "github"
143+
icon_pack = "fa"
144+
link = "//github.com/gcushen"
145+
146+
147+
# Navigation Links
148+
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
149+
# desired widget in your `content/home/` folder.
150+
# The weight parameter defines the order that the links will appear in.
151+
152+
[[menu.main]]
153+
name = "Home"
154+
url = "#about"
155+
weight = 1
156+
157+
[[menu.main]]
158+
name = "Publications"
159+
url = "#publications_selected"
160+
weight = 2
161+
162+
[[menu.main]]
163+
name = "Posts"
164+
url = "#posts"
165+
weight = 3
166+
167+
[[menu.main]]
168+
name = "Projects"
169+
url = "#projects"
170+
weight = 4
171+
172+
[[menu.main]]
173+
name = "Teaching"
174+
url = "#teaching"
175+
weight = 5
176+
177+
[[menu.main]]
178+
name = "Contact"
179+
url = "#contact"
180+
weight = 6
181+
182+
# Taxonomies.
183+
[taxonomies]
184+
tag = "tags"
185+
category = "categories"
186+
publication_type = "publication_types"
187+
188+
# Languages
189+
# Create a [languages.X] block for each language you want, where X is the language ID.
190+
191+
# Configure the English version of the website.
192+
[languages.en]
193+
languageCode = "en-us"

content/about.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "About"
3+
date: "2016-05-05T21:48:51-07:00"
4+
---
5+
6+
This is a "hello world" example website for the [**blogdown**](https://github.com/rstudio/blogdown) package. The theme was forked from [@jrutheiser/hugo-lithium-theme](https://github.com/jrutheiser/hugo-lithium-theme) and modified by [Yihui Xie](https://github.com/yihui/hugo-lithium-theme).

content/home/about.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
+++
2+
# About/Biography widget.
3+
4+
date = "2016-04-20T00:00:00"
5+
draft = false
6+
7+
widget = "about"
8+
9+
# Order that this section will appear in.
10+
weight = 1
11+
12+
# List your academic interests.
13+
[interests]
14+
interests = [
15+
"Artificial Intelligence",
16+
"Computational Linguistics",
17+
"Information Retrieval"
18+
]
19+
20+
# List your qualifications (such as academic degrees).
21+
[[education.courses]]
22+
course = "PhD in Artificial Intelligence"
23+
institution = "Stanford University"
24+
year = 2012
25+
26+
[[education.courses]]
27+
course = "MEng in Artificial Intelligence"
28+
institution = "Massachusetts Institute of Technology"
29+
year = 2009
30+
31+
[[education.courses]]
32+
course = "BSc in Artificial Intelligence"
33+
institution = "Massachusetts Institute of Technology"
34+
year = 2008
35+
36+
+++
37+
38+
# Biography
39+
40+
Lena Smith is a professor of artificial intelligence at the Stanford AI Lab. Her research interests include distributed robotics, mobile computing and programmable matter. She leads the Robotic Neurobiology group, which develops self-reconfiguring robots, systems of self-organizing robots, and mobile sensor networks.
41+
42+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed neque elit, tristique placerat feugiat ac, facilisis vitae arcu. Proin eget egestas augue. Praesent ut sem nec arcu pellentesque aliquet. Duis dapibus diam vel metus tempus vulputate.

content/home/contact.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
+++
2+
# Contact widget.
3+
4+
date = "2016-04-20T00:00:00"
5+
draft = false
6+
7+
title = "Contact"
8+
subtitle = ""
9+
widget = "contact"
10+
11+
# Order that this section will appear in.
12+
weight = 70
13+
14+
# Automatically link email and phone?
15+
autolink = true
16+
17+
+++
18+

content/home/posts.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
+++
2+
# Recent Posts widget.
3+
# This widget displays recent posts from `content/post/`.
4+
5+
date = "2016-04-20T00:00:00"
6+
draft = false
7+
8+
title = "Recent Posts"
9+
subtitle = ""
10+
widget = "posts"
11+
12+
# Order that this section will appear in.
13+
weight = 40
14+
15+
# Show posts that contain the following tags. Default to any tags.
16+
tags = []
17+
18+
# Number of posts to list.
19+
count = 5
20+
21+
+++
22+

content/home/projects.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
+++
2+
# Projects widget.
3+
# This widget displays all projects from `content/project/`.
4+
5+
date = "2016-04-20T00:00:00"
6+
draft = false
7+
8+
title = "Projects"
9+
subtitle = ""
10+
widget = "projects"
11+
12+
# Order that this section will appear in.
13+
weight = 50
14+
15+
# View.
16+
# Customize how projects are displayed.
17+
# Legend: 0 = list, 1 = cards.
18+
view = 1
19+
20+
# Filter toolbar.
21+
# Add or remove as many filters (`[[filter]]` instances) as you like.
22+
# Use "*" tag to show all projects or an existing tag prefixed with "." to filter by specific tag.
23+
# To remove toolbar, delete/comment all instances of `[[filter]]` below.
24+
[[filter]]
25+
name = "All"
26+
tag = "*"
27+
28+
[[filter]]
29+
name = "Deep Learning"
30+
tag = ".deep-learning"
31+
32+
[[filter]]
33+
name = "Other"
34+
tag = ".demo"
35+
36+
+++
37+

content/home/publications.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
+++
2+
# Recent Publications widget.
3+
# This widget displays recent publications from `content/publication/`.
4+
5+
date = "2016-04-20T00:00:00"
6+
draft = false
7+
8+
title = "Recent Publications"
9+
subtitle = ""
10+
widget = "publications"
11+
12+
# Order that this section will appear in.
13+
weight = 20
14+
15+
# Number of publications to list.
16+
count = 10
17+
18+
# Show publication details (such as abstract)? (true/false)
19+
detailed_list = false
20+
21+
+++
22+

content/home/publications_selected.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
+++
2+
# Selected Publications widget.
3+
# This widget displays publications from `content/publication/` which have
4+
# `selected = true` in their `+++` front matter.
5+
6+
date = "2016-04-20T00:00:00"
7+
draft = false
8+
9+
title = "Selected Publications"
10+
subtitle = ""
11+
widget = "publications_selected"
12+
13+
# Order that this section will appear in.
14+
weight = 10
15+
16+
# Show publication details (such as abstract)? (true/false)
17+
detailed_list = true
18+
19+
+++
20+

content/home/talks.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
+++
2+
# Recent and Upcoming Talks widget.
3+
4+
date = "2016-04-20T00:00:00"
5+
draft = false
6+
7+
title = "Recent & Upcoming Talks"
8+
subtitle = ""
9+
widget = "talks"
10+
11+
# Order that this section will appear in.
12+
weight = 30
13+
14+
# Number of talks to list.
15+
count = 10
16+
17+
# Show talk details (such as abstract)? (true/false)
18+
detailed_list = false
19+
20+
+++
21+

0 commit comments

Comments
 (0)