├── layouts ├── shortcodes │ ├── flipshortcodetest.html │ ├── arxiv.html │ ├── twitter.html │ └── googlecalendar.html ├── partials │ ├── widgets │ │ ├── arXiv.html │ │ ├── teaching.html │ │ ├── research.html │ │ ├── CV.html │ │ ├── contact.html │ │ └── aboutme.html │ ├── head_custom.html │ ├── footer_container0.html │ ├── footer_container.html │ ├── publication_li_detailed.html │ ├── navbar0.html │ ├── navbar1.html │ ├── navbar.html │ └── header.html ├── _default │ └── single.html ├── section │ ├── teaching.html │ └── publication.html ├── teaching │ └── class.html └── publication │ └── single.html ├── public ├── favicon.ico ├── img │ ├── icon.png │ ├── boards.jpg │ ├── bubbles.jpg │ ├── portrait.jpg │ ├── Profile │ │ ├── MyName.png │ │ ├── Flip600_sq.jpg │ │ ├── MyName_white.png │ │ └── FlipProfileSq.afphoto │ ├── apple-touch-icon.png │ ├── background │ │ ├── Bundle3.jpg │ │ ├── waiting.jpg │ │ ├── BG_Bundle2.jpg │ │ ├── UCRWelcome.jpg │ │ ├── chalkboard.jpg │ │ ├── feynmanfooter.png │ │ ├── chalkboard_thin.jpg │ │ ├── chalkboard_verythin.jpg │ │ └── chalkboard_verythin.png │ ├── identity │ │ └── UCRHEP_03.png │ ├── headers │ │ ├── bubbles-wide.jpg │ │ └── getting-started.png │ └── research │ │ ├── FigureTableWeb.png │ │ ├── IPCArtistLong.png │ │ └── IceCubeArtist.png ├── files │ └── Tanedo.pdf ├── post │ └── page │ │ └── 1 │ │ └── index.html ├── teaching │ ├── page │ │ └── 1 │ │ │ └── index.html │ └── index.xml ├── tags │ ├── hugo │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── jekyll │ │ ├── page │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ ├── academic │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ └── index.xml ├── publication_types │ ├── 1 │ │ ├── page │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ ├── 2 │ │ ├── page │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ ├── 3 │ │ ├── page │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ └── index.xml ├── css │ ├── cryptedmail.css │ ├── highlight.min.css │ ├── green.css │ └── flip2017.css ├── categories │ └── index.xml ├── home │ └── index.xml ├── talk │ ├── index.xml │ ├── index.html │ └── example-talk │ │ └── index.html ├── publication │ └── index.xml ├── sitemap.xml ├── js │ └── hugo-academic.js └── arxiv │ └── index.html ├── static ├── favicon.ico ├── img │ ├── icon.png │ ├── boards.jpg │ ├── bubbles.jpg │ ├── portrait.jpg │ ├── Profile │ │ ├── MyName.png │ │ ├── Flip600_sq.jpg │ │ └── MyName_white.png │ ├── apple-touch-icon.png │ ├── background │ │ ├── Bundle3.jpg │ │ ├── waiting.jpg │ │ ├── BG_Bundle2.jpg │ │ ├── UCRWelcome.jpg │ │ ├── chalkboard.jpg │ │ ├── feynmanfooter.png │ │ ├── chalkboard_thin.jpg │ │ └── chalkboard_verythin.jpg │ ├── identity │ │ └── UCRHEP_03.png │ ├── headers │ │ ├── bubbles-wide.jpg │ │ └── getting-started.png │ └── research │ │ ├── FigureTableWeb.png │ │ ├── IPCArtistLong.png │ │ └── IceCubeArtist.png ├── files │ └── Tanedo.pdf └── css │ ├── cryptedmail.css │ ├── green.css │ └── flip2017.css ├── archetypes └── default.md ├── content ├── post │ ├── _index.md │ ├── migrate-from-jekyll.md │ ├── widgets.md │ └── managing-content.md ├── publication │ ├── _index.md │ ├── capture.md │ └── beryllium.md ├── talk │ ├── _index.md │ └── example-talk.md ├── home │ ├── contact.md │ ├── misc.md │ ├── outreach.md │ ├── teaching.md │ ├── aboutme.md │ ├── CV.md │ └── research.md ├── tags │ └── academic │ │ └── _index.md ├── arxiv.md └── teaching │ ├── _index.md │ ├── p177_2018.md │ ├── p165_2018.md │ └── p231_2017.md └── config.toml /layouts/shortcodes/flipshortcodetest.html: -------------------------------------------------------------------------------- 1 | HELLO, FLIP! 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/arxiv.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /public/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/icon.png -------------------------------------------------------------------------------- /static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/icon.png -------------------------------------------------------------------------------- /public/files/Tanedo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/files/Tanedo.pdf -------------------------------------------------------------------------------- /public/img/boards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/boards.jpg -------------------------------------------------------------------------------- /public/img/bubbles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/bubbles.jpg -------------------------------------------------------------------------------- /public/img/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/portrait.jpg -------------------------------------------------------------------------------- /static/files/Tanedo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/files/Tanedo.pdf -------------------------------------------------------------------------------- /static/img/boards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/boards.jpg -------------------------------------------------------------------------------- /static/img/bubbles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/bubbles.jpg -------------------------------------------------------------------------------- /static/img/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/portrait.jpg -------------------------------------------------------------------------------- /public/img/Profile/MyName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/Profile/MyName.png -------------------------------------------------------------------------------- /static/img/Profile/MyName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/Profile/MyName.png -------------------------------------------------------------------------------- /public/img/Profile/Flip600_sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/Profile/Flip600_sq.jpg -------------------------------------------------------------------------------- /public/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/background/Bundle3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/Bundle3.jpg -------------------------------------------------------------------------------- /public/img/background/waiting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/waiting.jpg -------------------------------------------------------------------------------- /public/img/identity/UCRHEP_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/identity/UCRHEP_03.png -------------------------------------------------------------------------------- /static/img/Profile/Flip600_sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/Profile/Flip600_sq.jpg -------------------------------------------------------------------------------- /static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /static/img/background/Bundle3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/Bundle3.jpg -------------------------------------------------------------------------------- /static/img/background/waiting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/waiting.jpg -------------------------------------------------------------------------------- /static/img/identity/UCRHEP_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/identity/UCRHEP_03.png -------------------------------------------------------------------------------- /public/img/Profile/MyName_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/Profile/MyName_white.png -------------------------------------------------------------------------------- /public/img/headers/bubbles-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/headers/bubbles-wide.jpg -------------------------------------------------------------------------------- /static/img/Profile/MyName_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/Profile/MyName_white.png -------------------------------------------------------------------------------- /static/img/headers/bubbles-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/headers/bubbles-wide.jpg -------------------------------------------------------------------------------- /public/img/background/BG_Bundle2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/BG_Bundle2.jpg -------------------------------------------------------------------------------- /public/img/background/UCRWelcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/UCRWelcome.jpg -------------------------------------------------------------------------------- /public/img/background/chalkboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/chalkboard.jpg -------------------------------------------------------------------------------- /public/img/headers/getting-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/headers/getting-started.png -------------------------------------------------------------------------------- /public/img/research/FigureTableWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/research/FigureTableWeb.png -------------------------------------------------------------------------------- /public/img/research/IPCArtistLong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/research/IPCArtistLong.png -------------------------------------------------------------------------------- /public/img/research/IceCubeArtist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/research/IceCubeArtist.png -------------------------------------------------------------------------------- /static/img/background/BG_Bundle2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/BG_Bundle2.jpg -------------------------------------------------------------------------------- /static/img/background/UCRWelcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/UCRWelcome.jpg -------------------------------------------------------------------------------- /static/img/background/chalkboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/chalkboard.jpg -------------------------------------------------------------------------------- /static/img/headers/getting-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/headers/getting-started.png -------------------------------------------------------------------------------- /static/img/research/FigureTableWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/research/FigureTableWeb.png -------------------------------------------------------------------------------- /static/img/research/IPCArtistLong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/research/IPCArtistLong.png -------------------------------------------------------------------------------- /static/img/research/IceCubeArtist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/research/IceCubeArtist.png -------------------------------------------------------------------------------- /public/img/Profile/FlipProfileSq.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/Profile/FlipProfileSq.afphoto -------------------------------------------------------------------------------- /public/img/background/feynmanfooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/feynmanfooter.png -------------------------------------------------------------------------------- /static/img/background/feynmanfooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/feynmanfooter.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .TranslationBaseName "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /public/img/background/chalkboard_thin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/chalkboard_thin.jpg -------------------------------------------------------------------------------- /static/img/background/chalkboard_thin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/chalkboard_thin.jpg -------------------------------------------------------------------------------- /public/img/background/chalkboard_verythin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/chalkboard_verythin.jpg -------------------------------------------------------------------------------- /public/img/background/chalkboard_verythin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/public/img/background/chalkboard_verythin.png -------------------------------------------------------------------------------- /static/img/background/chalkboard_verythin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliptanedo/FlipWebsite2017/HEAD/static/img/background/chalkboard_verythin.jpg -------------------------------------------------------------------------------- /layouts/shortcodes/twitter.html: -------------------------------------------------------------------------------- 1 | 2 | Tweets by FlipTanedo 3 | 4 | -------------------------------------------------------------------------------- /content/post/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Posts" 3 | date = "2017-01-01T00:00:00Z" 4 | math = false 5 | highlight = false 6 | 7 | # Optional featured image (relative to `static/img/` folder). 8 | [header] 9 | image = "" 10 | caption = "" 11 | 12 | +++ 13 | -------------------------------------------------------------------------------- /content/publication/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Publications" 3 | date = "2017-01-01T00:00:00Z" 4 | math = false 5 | highlight = false 6 | 7 | # Optional featured image (relative to `static/img/` folder). 8 | [header] 9 | image = "" 10 | caption = "" 11 | 12 | +++ 13 | -------------------------------------------------------------------------------- /content/talk/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Recent & Upcoming Talks" 3 | date = "2017-01-01T00:00:00Z" 4 | math = false 5 | highlight = false 6 | 7 | # Optional featured image (relative to `static/img/` folder). 8 | [header] 9 | image = "" 10 | caption = "" 11 | 12 | +++ 13 | -------------------------------------------------------------------------------- /public/post/page/1/index.html: -------------------------------------------------------------------------------- 1 |{{ . | markdownify }}
{{ end }} 8 |{{ . | markdownify }}
{{ end }} 10 |{{ $page.Params.here_are_my_classes }}
14 |
15 | {{ range first $.Site.Params.numitems (where $.Data.Pages "Type" "teaching") }}
16 |
17 |
18 | {{ .Title }}
19 |
20 | {{ .Params.subtitle }}
21 |
22 | ( {{ .Params.term }} {{ .Params.year }} )
23 |
24 |
25 | {{ end }}
26 |
{{ . | markdownify }}
{{ end }} 8 | 9 |10 | 11 | {{ $page.Params.group_name }} 12 | 13 |
14 | 15 | 16 | 17 |37 | {{ $page.Params.recruit_blurb }} 38 |
39 | 40 | 41 | 42 |16 | {{ i18n "filter_by_type" }}: 17 | 25 |
26 | 27 |{{ partial "publication_links" (dict "content" . "is_list" 1) }}
40 |{{ . | markdownify }}
{{ end }} 8 | 9 |10 | 11 | Download Complete CV 12 | 13 | 14 | 17 |
18 | 19 | 20 |
21 |
22 |
23 |
{{ .course }}{{ with .year }}, {{ . }}{{ end }}
66 |{{ .institution }}
67 |{{ . | markdownify }}
{{ end }} 10 |{{ . | markdownify }}
{{ end }} 13 | 14 |{{ .Params.abstract | markdownify }}
29 | 30 | {{ if (.Params.publication_types) and (ne (index .Params.publication_types 0) "0") }} 31 |<!--more--> in the article body, or completely override the automated summary by adding a `summary` parameter to the `+++` preamble such that:
82 |
83 | summary = "Summary of my post."
84 |
85 | To disable commenting for a specific post, you can add `disable_comments = true` to the post `+++` preamble. Or to disable commenting for all posts, you can either set `disqusShortname = ""` or `disable_comments = true` in `config.toml`.
86 |
87 | ## Create a project
88 |
89 | To create a project:
90 |
91 | hugo new project/my-project-name.md
92 |
93 | Then edit the newly created file `content/project/my-project-name.md`. Either you can link the project to an external project website by setting the `external_link = "http://external-project.com"` variable at the top of the file, or you can add content (below the final `+++`) in order to render a project page on your website.
94 |
95 | ## Create a talk
96 |
97 | To create a talk:
98 |
99 | hugo new talk/my-talk-name.md
100 |
101 | Then edit the newly created file `content/talk/my-talk-name.md` with your full talk title and details. Note that many of the talk parameters are similar to the publication parameters.
102 |
103 | ## Manage node index pages
104 |
105 | The node index pages (e.g. `/post/`) are the special pages which list all of your content. They can exist for blog posts, publications, and talks. The homepage widgets will automatically link to the node index pages when you have more items of content than can be displayed in the widget. Therefore, if you don't have much content, you may not see the automatic links yet - but you can also manually link to them using a normal Markdown formatted link in your content.
106 |
107 | You can edit the title and add your own content, such as an introduction, by creating and editing the following content files for the node indexes:
108 |
109 | hugo new post/_index.md
110 | hugo new publication/_index.md
111 | hugo new talk/_index.md
112 |
113 | Then remove all parameters except for `title`, `math`, `highlight`, and `date`. Edit the `title` parameter as desired and add any content after the `+++` preamble/frontmatter ends. For example, you should have something similar to:
114 |
115 | ```toml
116 | +++
117 | title = "List of my posts"
118 | date = "2017-01-01T00:00:00Z"
119 | math = false
120 | highlight = false
121 | +++
122 |
123 | Below is an automatically generated list of all my blog posts!
124 |
125 | ```
126 |
127 | ## Removing content
128 |
129 | Generally, to remove content, simply delete the relevant file from your `content/post`, `content/publication`, `content/project`, or `content/talk` folder.
130 |
131 | ## View your updated site
132 |
133 | After you have made changes to your site, you can view it by running the `hugo server --watch` command and then opening [localhost:1313](http://localhost:1313) in your web browser.
134 |
135 | ## Deploy your site
136 |
137 | Finally, you can build the static website to a `public/` folder ready for deployment using the `hugo` command.
138 |
139 | You may then deploy your site by copying the `public/` directory (by FTP, SFTP, WebDAV, Rsync, git push, etc.) to your production web server.
140 |
141 | Note that running `hugo` does not remove any previously generated files before building. Therefore, it's best practice to delete your `public/` directory prior to running `hugo` to ensure no old or interim files are deployed to your server.
142 |
--------------------------------------------------------------------------------
/public/publication_types/2/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | A listing of publications from the arXiv.
211 | 212 | 213 | 214 | 215 |219 | 220 | 221 | 222 | 223 | Details 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 |
232 |
205 | My caption 😄
206 | Embed your slides or video here using shortcodes. Further details can easily be added using Markdown and $\rm \LaTeX$ math code.
216 | 217 |