├── 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 | http://physics.ucr.edu/~flip/post/ -------------------------------------------------------------------------------- /public/teaching/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/teaching/ -------------------------------------------------------------------------------- /public/tags/hugo/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/tags/hugo/ -------------------------------------------------------------------------------- /content/home/contact.md: -------------------------------------------------------------------------------- 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 = 7 13 | 14 | # Automatically link email and phone? 15 | autolink = true 16 | 17 | +++ 18 | 19 | {{% googlecalendar iq4oas3v22k3j62f2ci331hqd4 %}} 20 | -------------------------------------------------------------------------------- /content/tags/academic/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Content tagged as 'Academic'" 3 | date = "2017-01-01T00:00:00" 4 | math = false 5 | highlight = false 6 | 7 | # Optional featured image (relative to `static/img/` folder). 8 | [header] 9 | image = "headers/bubbles-wide.jpg" 10 | caption = "" 11 | 12 | +++ 13 | 14 | Here is a list of all the content that has been tagged as *academic*. 15 | -------------------------------------------------------------------------------- /public/tags/jekyll/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/tags/jekyll/ -------------------------------------------------------------------------------- /public/tags/academic/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/tags/academic/ -------------------------------------------------------------------------------- /public/publication_types/1/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/publication_types/1/ -------------------------------------------------------------------------------- /public/publication_types/3/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/publication_types/3/ -------------------------------------------------------------------------------- /public/publication_types/2/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://physics.ucr.edu/~flip/test/publication_types/2/ -------------------------------------------------------------------------------- /content/arxiv.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2016-04-20T00:00:00" 6 | draft = false 7 | 8 | title = "arXiv Papers" 9 | subtitle = "" 10 | 11 | arXivMax = 20 12 | 13 | +++ 14 | 15 | A listing of publications from the [arXiv](http://www.arXiv.org). 16 | 17 | {{% arxiv %}} 18 | -------------------------------------------------------------------------------- /public/css/cryptedmail.css: -------------------------------------------------------------------------------- 1 | /*https://stackoverflow.com/questions/483212/effective-method-to-hide-email-from-spam-bots*/ 2 | .cryptedmail:after { 3 | content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 4 | } 5 | /* 6 | USAGE: 7 | 8 | */ -------------------------------------------------------------------------------- /static/css/cryptedmail.css: -------------------------------------------------------------------------------- 1 | /*https://stackoverflow.com/questions/483212/effective-method-to-hide-email-from-spam-bots*/ 2 | .cryptedmail:after { 3 | content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 4 | } 5 | /* 6 | USAGE: 7 | 8 | */ -------------------------------------------------------------------------------- /content/home/misc.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2016-04-20T00:00:00" 6 | draft = false 7 | 8 | title = "Miscellaneous" 9 | subtitle = "" 10 | widget = "custom" 11 | 12 | # Order that this section will appear in. 13 | weight = 6 14 | 15 | +++ 16 | 17 | {{% twitter fliptanedo %}} 18 | -------------------------------------------------------------------------------- /layouts/partials/widgets/arXiv.html: -------------------------------------------------------------------------------- 1 | {{ $page := .page }} 2 | 3 | 4 |
5 |
6 |

{{ with $page.Title }}{{ . | markdownify }}{{ end }}

7 | {{ with $page.Params.subtitle }}

{{ . | markdownify }}

{{ end }} 8 |
9 |
10 | {{ $page.Content }} 11 | 12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /layouts/shortcodes/googlecalendar.html: -------------------------------------------------------------------------------- 1 |

Availability

2 | 3 | -------------------------------------------------------------------------------- /content/teaching/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Courses Taught" 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 = "background/chalkboard_thin.jpg" 10 | caption = "Archived course materials are provided as-is." 11 | 12 | +++ 13 | 14 | These are materials for past courses that I have taught at UCR, Cornell, and Stanford. 15 | 16 | > Actual student evaluation: "You were underratedly the funniest T.A. I've had while at Cornell." 17 | -------------------------------------------------------------------------------- /public/categories/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/categories/ 6 | Recent content in Categories on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | © 2017 Flip Tanedo 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /layouts/partials/head_custom.html: -------------------------------------------------------------------------------- 1 | 11 | 12 | -------------------------------------------------------------------------------- /content/home/outreach.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2016-04-20T00:00:00" 6 | draft = false 7 | 8 | title = "Other Activities" 9 | subtitle = "" 10 | widget = "custom" 11 | 12 | # Order that this section will appear in. 13 | weight = 5 14 | 15 | +++ 16 | 17 | ## Outreach 18 | 19 | - Phy-Sci Book Club 20 | - Family Coding 21 | - ParticleBites (*ParticleBitos*) 22 | 23 | ## UCR Events 24 | 25 | - Physics & Astronomy Open House 26 | - Physics Hack Day 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /public/home/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Homes on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/home/ 6 | Recent content in Homes on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | © 2017 Flip Tanedo 10 | Wed, 20 Apr 2016 00:00:00 +0000 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /content/home/teaching.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2016-04-20T00:00:00" 6 | draft = false 7 | 8 | title = "Teaching" 9 | subtitle = "" 10 | widget = "teaching" 11 | 12 | here_are_my_classes = "Here are some recent and upcoming courses that I am teaching." 13 | 14 | # Order that this section will appear in. 15 | weight = 5 16 | 17 | +++ 18 | 19 | Here are some [past courses](teaching/). Older courses are being uploaded, contact me if you need old content. 20 | 21 | ![Example](img/background/chalkboard_verythin.jpg) 22 | -------------------------------------------------------------------------------- /layouts/partials/footer_container0.html: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /content/talk/example-talk.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2017-01-01T00:00:00" 3 | title = "Example Talk" 4 | abstract = "" 5 | abstract_short = "" 6 | event = "Hugo Academic Theme Conference" 7 | event_url = "https://example.org" 8 | location = "London, United Kingdom" 9 | 10 | selected = false 11 | math = true 12 | 13 | url_pdf = "" 14 | url_slides = "" 15 | url_video = "" 16 | 17 | # Optional featured image (relative to `static/img/` folder). 18 | [header] 19 | image = "headers/bubbles-wide.jpg" 20 | caption = "My caption :smile:" 21 | 22 | +++ 23 | 24 | Embed your slides or video here using [shortcodes](https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/). Further details can easily be added using *Markdown* and $\rm \LaTeX$ math code. 25 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | {{ partial "navbar.html" . }} 3 | 4 |
5 | 6 | {{ partial "header_image.html" . }} 7 | 8 |
9 |

{{ .Title }}

10 | 11 | 12 |
13 | {{ .Content }} 14 |
15 |
16 | 17 |
18 | 19 |
20 | {{ partial "section_pager.html" . }} 21 |
22 | 23 |
24 | {{ partial "comments.html" . }} 25 |
26 | 27 | {{ partial "footer_container.html" . }} 28 | {{ partial "footer.html" . }} 29 | -------------------------------------------------------------------------------- /public/css/highlight.min.css: -------------------------------------------------------------------------------- 1 | .hljs{display:block;overflow-x:auto;padding:0.5em;color:#333;background:#f8f8f8}.hljs-comment,.hljs-quote{color:#998;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-subst{color:#333;font-weight:bold}.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr{color:#008080}.hljs-string,.hljs-doctag{color:#d14}.hljs-title,.hljs-section,.hljs-selector-id{color:#900;font-weight:bold}.hljs-subst{font-weight:normal}.hljs-type,.hljs-class .hljs-title{color:#458;font-weight:bold}.hljs-tag,.hljs-name,.hljs-attribute{color:#000080;font-weight:normal}.hljs-regexp,.hljs-link{color:#009926}.hljs-symbol,.hljs-bullet{color:#990073}.hljs-built_in,.hljs-builtin-name{color:#0086b3}.hljs-meta{color:#999;font-weight:bold}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold} -------------------------------------------------------------------------------- /layouts/partials/footer_container.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | 24 | 25 | -------------------------------------------------------------------------------- /content/home/aboutme.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # About/Biography widget. 3 | 4 | date = "2016-04-20T00:00:00" 5 | draft = false 6 | 7 | widget = "aboutme" 8 | 9 | # Order that this section will appear in. 10 | weight = 1 11 | 12 | flip_quick_blurb = "I enjoy swimming, science fiction, and the company of friendly canines." 13 | 14 | 15 | +++ 16 | 17 | 18 | 19 | # Biography 20 | 21 | I spend a lot of time thinking about dark matter. 22 | 23 | I grew up in Los Angeles and studied math and physics at Stanford. I did masters degrees in Cambridge the IPPP at Durham, then completed my Ph.D at Cornell. After postdoc at UC Irvine, I am now an assistant professor at UCR. 24 | 25 | I fell in love with physics after reading *The Physics of Star Trek* and continue to value science communication in its many forms. 26 | 27 | 28 | 29 | 30 | 32 | -------------------------------------------------------------------------------- /layouts/section/teaching.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | {{ partial "navbar.html" . }} 3 | 4 | {{ partial "header_image.html" . }} 5 | 6 |
7 | 8 | {{ with .Title }}

{{ . }}

{{ end }} 9 | 10 | {{ with .Content }} 11 |
{{ . }}
12 | {{ end }} 13 | 14 | {{ $paginator := .Paginate .Data.Pages }} 15 | {{ range $paginator.Pages }} 16 |
17 |

18 | {{ .Title }} 19 | {{ .Params.subtitle }} 20 | ({{ .Params.university }}, {{ .Params.term }} {{ .Params.year }})

21 |
22 | {{ if .Params.summary }} 23 | {{ printf "%s" .Params.summary | markdownify }} 24 | {{ else if .Truncated }} 25 | {{ printf "%s" .Summary | markdownify }} 26 | {{ end }} 27 |
28 |
29 | {{ end }} 30 | 31 | {{ partial "pagination" . }} 32 | 33 |
34 | {{ partial "footer_container.html" . }} 35 | {{ partial "footer.html" . }} 36 | -------------------------------------------------------------------------------- /public/publication_types/1/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/publication_types/1/ 6 | Recent content in 1 on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Mon, 01 Jul 2013 00:00:00 +0000 11 | 12 | 13 | 14 | Dark Matter Capture 15 | http://physics.ucr.edu/~flip/publication/capture/ 16 | Mon, 01 Jul 2013 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/publication/capture/ 19 | <!-- More detail can easily be written here using *Markdown* and $\rm \LaTeX$ math code. --> 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /public/publication_types/3/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 3 on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/publication_types/3/ 6 | Recent content in 3 on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Mon, 01 Jul 2013 00:00:00 +0000 11 | 12 | 13 | 14 | New Physics in Nuclear Transitions 15 | http://physics.ucr.edu/~flip/publication/beryllium/ 16 | Mon, 01 Jul 2013 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/publication/beryllium/ 19 | <!-- More detail can easily be written here using *Markdown* and $\rm \LaTeX$ math code. --> 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /public/publication_types/2/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2 on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/test/publication_types/2/ 6 | Recent content in 2 on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Tue, 01 Sep 2015 00:00:00 +0000 11 | 12 | 13 | 14 | A Person Re-Identification System For Mobile Devices 15 | http://physics.ucr.edu/~flip/test/publication/person-re-identification/ 16 | Tue, 01 Sep 2015 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/test/publication/person-re-identification/ 19 | <p>More detail can easily be written here using <em>Markdown</em> and $\rm \LaTeX$ math code.</p> 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /layouts/partials/widgets/teaching.html: -------------------------------------------------------------------------------- 1 | 2 | {{ $ := .root }} 3 | {{ $page := .page }} 4 | 5 | 6 |
7 |
8 |

{{ with $page.Title }}{{ . | markdownify }}{{ end }}

9 | {{ with $page.Params.subtitle }}

{{ . | markdownify }}

{{ end }} 10 |
11 |
12 | 13 |

{{ $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 |

27 | 28 | {{ $page.Content }} 29 |
30 |
31 | 32 | 33 | 44 | -------------------------------------------------------------------------------- /public/talk/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Recent & Upcoming Talks on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/talk/ 6 | Recent content in Recent & Upcoming Talks on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Sun, 01 Jan 2017 00:00:00 +0000 11 | 12 | 13 | 14 | Example Talk 15 | http://physics.ucr.edu/~flip/talk/example-talk/ 16 | Sun, 01 Jan 2017 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/talk/example-talk/ 19 | <p>Embed your slides or video here using <a href="https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/" target="_blank">shortcodes</a>. Further details can easily be added using <em>Markdown</em> and $\rm \LaTeX$ math code.</p> 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /public/publication_types/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Publication_types on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/publication_types/ 6 | Recent content in Publication_types on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Mon, 01 Jul 2013 00:00:00 +0000 11 | 12 | 13 | 14 | 1 15 | http://physics.ucr.edu/~flip/publication_types/1/ 16 | Mon, 01 Jul 2013 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/publication_types/1/ 19 | 20 | 21 | 22 | 23 | 3 24 | http://physics.ucr.edu/~flip/publication_types/3/ 25 | Mon, 01 Jul 2013 00:00:00 +0000 26 | 27 | http://physics.ucr.edu/~flip/publication_types/3/ 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/css/green.css: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * An Example Green Theme for Hugo Academic 3 | * Set `custom_css = ["green.css"] in `config.toml`. 4 | * Then save this file as `/static/css/green.css` relative to your website root (i.e. not in `themes/academic` directory). 5 | * https://github.com/gcushen/hugo-academic 6 | **************************************************/ 7 | 8 | a, 9 | a:visited, 10 | h3.article-title a:hover { 11 | color: rgb(76,175,80); 12 | } 13 | 14 | a:hover { 15 | color: rgb(0,230,118); 16 | } 17 | 18 | .navbar-default .navbar-nav li a:hover, 19 | .btn-primary, 20 | .btn-primary.btn-outline { 21 | color: rgb(76,175,80); 22 | } 23 | 24 | /* Articles */ 25 | 26 | .article-title a { 27 | color: #151515; 28 | } 29 | 30 | .article-metadata a { 31 | color: #888; 32 | } 33 | 34 | .article-metadata a:hover { 35 | color: rgb(76,175,80); 36 | } 37 | 38 | /* Standard buttons */ 39 | 40 | .btn-primary, 41 | .btn-primary.btn-outline { 42 | border-color: rgb(76,175,80); 43 | } 44 | 45 | /* Hover buttons */ 46 | 47 | .btn-primary.btn-outline:hover { 48 | border-color: rgb(76,175,80); 49 | } 50 | 51 | .btn-primary:hover, 52 | .btn-primary:focus, 53 | .btn-primary:active, 54 | .btn-primary.active, 55 | .btn-primary:visited, 56 | .btn-primary.btn-outline:active { 57 | background-color: rgb(76,175,80); 58 | } 59 | -------------------------------------------------------------------------------- /static/css/green.css: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * An Example Green Theme for Hugo Academic 3 | * Set `custom_css = ["green.css"] in `config.toml`. 4 | * Then save this file as `/static/css/green.css` relative to your website root (i.e. not in `themes/academic` directory). 5 | * https://github.com/gcushen/hugo-academic 6 | **************************************************/ 7 | 8 | a, 9 | a:visited, 10 | h3.article-title a:hover { 11 | color: rgb(76,175,80); 12 | } 13 | 14 | a:hover { 15 | color: rgb(0,230,118); 16 | } 17 | 18 | .navbar-default .navbar-nav li a:hover, 19 | .btn-primary, 20 | .btn-primary.btn-outline { 21 | color: rgb(76,175,80); 22 | } 23 | 24 | /* Articles */ 25 | 26 | .article-title a { 27 | color: #151515; 28 | } 29 | 30 | .article-metadata a { 31 | color: #888; 32 | } 33 | 34 | .article-metadata a:hover { 35 | color: rgb(76,175,80); 36 | } 37 | 38 | /* Standard buttons */ 39 | 40 | .btn-primary, 41 | .btn-primary.btn-outline { 42 | border-color: rgb(76,175,80); 43 | } 44 | 45 | /* Hover buttons */ 46 | 47 | .btn-primary.btn-outline:hover { 48 | border-color: rgb(76,175,80); 49 | } 50 | 51 | .btn-primary:hover, 52 | .btn-primary:focus, 53 | .btn-primary:active, 54 | .btn-primary.active, 55 | .btn-primary:visited, 56 | .btn-primary.btn-outline:active { 57 | background-color: rgb(76,175,80); 58 | } 59 | -------------------------------------------------------------------------------- /layouts/partials/widgets/research.html: -------------------------------------------------------------------------------- 1 | {{ $page := .page }} 2 | 3 | 4 |
5 |
6 |

{{ with $page.Title }}{{ . | markdownify }}{{ end }}

7 | {{ with $page.Params.subtitle }}

{{ . | markdownify }}

{{ end }} 8 | 9 |

10 | 11 | {{ $page.Params.group_name }} 12 | 13 |

14 | 15 | 16 | 17 |
18 |
19 | 20 | {{ $page.Params.research_blurb }} 21 | 22 | 23 | 24 |

{{ $page.Params.student_title }}

25 |
26 | {{ with $page.Params.mygroup }} 27 |
    28 | {{ range .students }} 29 |
  • 30 | 31 |
  • 32 | {{ end }} 33 |
34 | {{ end }} 35 |
36 |

37 | {{ $page.Params.recruit_blurb }} 38 |

39 | 40 | 41 | 42 |

{{ $page.Params.research_title }}

43 | {{ $page.Content }} 44 | 45 |
46 | -------------------------------------------------------------------------------- /public/publication/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Publications on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/publication/ 6 | Recent content in Publications on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Sun, 01 Jan 2017 00:00:00 +0000 11 | 12 | 13 | 14 | Dark Matter Capture 15 | http://physics.ucr.edu/~flip/publication/capture/ 16 | Mon, 01 Jul 2013 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/publication/capture/ 19 | <!-- More detail can easily be written here using *Markdown* and $\rm \LaTeX$ math code. --> 20 | 21 | 22 | 23 | 24 | New Physics in Nuclear Transitions 25 | http://physics.ucr.edu/~flip/publication/beryllium/ 26 | Mon, 01 Jul 2013 00:00:00 +0000 27 | 28 | http://physics.ucr.edu/~flip/publication/beryllium/ 29 | <!-- More detail can easily be written here using *Markdown* and $\rm \LaTeX$ math code. --> 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /public/tags/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/tags/ 6 | Recent content in Tags on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Sun, 01 Jan 2017 00:00:00 +0000 11 | 12 | 13 | 14 | Content tagged as 'Academic' 15 | http://physics.ucr.edu/~flip/tags/academic/ 16 | Sun, 01 Jan 2017 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/tags/academic/ 19 | <p>Here is a list of all the content that has been tagged as <em>academic</em>.</p> 20 | 21 | 22 | 23 | 24 | Hugo 25 | http://physics.ucr.edu/~flip/tags/hugo/ 26 | Wed, 20 Apr 2016 12:00:00 +0000 27 | 28 | http://physics.ucr.edu/~flip/tags/hugo/ 29 | 30 | 31 | 32 | 33 | Jekyll 34 | http://physics.ucr.edu/~flip/tags/jekyll/ 35 | Mon, 10 Mar 2014 00:00:00 +0000 36 | 37 | http://physics.ucr.edu/~flip/tags/jekyll/ 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /layouts/section/publication.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | {{ partial "navbar.html" . }} 3 | 4 | {{ partial "header_image.html" . }} 5 | 6 |
7 |
8 |
9 |

{{ .Title | default (i18n "publications") }}

10 | 11 | {{ with .Content }} 12 |
{{ . }}
13 | {{ end }} 14 | 15 |

16 | {{ i18n "filter_by_type" }}: 17 | 25 |

26 | 27 |
28 | {{ range .Pages.ByDate.Reverse }} 29 | 30 | {{ if .Params.publication_types }} 31 | {{ $.Scratch.Set "pubtype" (index .Params.publication_types 0) }} 32 | {{ else }} 33 | {{ $.Scratch.Set "pubtype" 0 }} 34 | {{ end }} 35 | 36 |
37 | {{ .Title }} 39 |

{{ partial "publication_links" (dict "content" . "is_list" 1) }}

40 |
41 | 42 | {{ end }} 43 |
44 | 45 |
46 |
47 |
48 | {{ partial "footer_container.html" . }} 49 | {{ partial "footer.html" . }} 50 | -------------------------------------------------------------------------------- /content/teaching/p177_2018.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2018-04-20T00:00:00" 6 | draft = false 7 | 8 | 9 | 10 | 11 | title = "P177" 12 | subtitle = "Computational Physics" 13 | type = "teaching" 14 | layout = "class" 15 | summary = "Numerical methods to study large datasets in physics." 16 | term = "Spring" 17 | year = "2018" 18 | university = "UCR" 19 | instructor = "Prof. Flip Tanedo" 20 | syllabuspath = "" 21 | 22 | [[teachinfo]] 23 | info = "Lecturer" 24 | value = "Prof. Flip Tanedo" 25 | email1 = "flip.tanedo" 26 | email2 = "ucr" 27 | email3 = "edu" 28 | office = "Physics 3054" 29 | 30 | [[teachinfo]] 31 | info = "TA" 32 | value = "TBD" 33 | email1 = "student" 34 | email2 = "ucr" 35 | email3 = "edu" 36 | office = "Physics 2152" 37 | 38 | 39 | [[textbook]] 40 | title = "Computational Physics" 41 | author = "Mark Newman" 42 | url = "http://www-personal.umich.edu/~mejn/cp/" 43 | comment = "Required. Sorry." 44 | 45 | 46 | 47 | 48 | [[courseinfo]] 49 | info = "Lecture" 50 | value = "TR 5:10-6:30pm" 51 | comment = "Physics 2104" 52 | 53 | [[courseinfo]] 54 | info = "Office Hours" 55 | value = "TR 6:30-7:15pm" 56 | comment = "Physics 3054" 57 | 58 | [[courseinfo]] 59 | info = "Final Exam" 60 | value = "TBA" 61 | comment = "" 62 | 63 | 64 | # Optional featured image (relative to `static/img/` folder). 65 | [header] 66 | image = "background/chalkboard_thin.jpg" 67 | caption = "How have computational methods changed the way we do physics?" 68 | 69 | 70 | # Order that this section will appear in. 71 | weight = 1 72 | 73 | +++ 74 | 75 | 76 | This page will be filled in. 77 | -------------------------------------------------------------------------------- /content/post/migrate-from-jekyll.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2014-03-10T00:00:00" 3 | draft = false 4 | tags = ["jekyll"] 5 | title = "Migrate from Jekyll to Hugo" 6 | summary = """ 7 | Learn how to migrate an existing website from Jekyll to Hugo. 8 | """ 9 | math = false 10 | +++ 11 | 12 | Here are a few tips for migrating an existing website from Jekyll to Hugo. These tips can be applied in conjunction with following Hugo Academic's [getting started guide]({{< ref "post/getting-started.md" >}}). 13 | 14 | ## Move static content to `static` 15 | Jekyll has a rule that any directory not starting with `_` will be copied as-is to the `_site` output. Hugo keeps all static content under `static`. You should therefore move it all there. 16 | With Jekyll, something that looked like 17 | 18 | ▾ / 19 | ▾ images/ 20 | logo.png 21 | 22 | should become 23 | 24 | ▾ / 25 | ▾ static/ 26 | ▾ images/ 27 | logo.png 28 | 29 | Additionally, you'll want any files that should reside at the root (such as `CNAME`) to be moved to `static`. 30 | 31 | ## Fix content 32 | Depending on the amount of customization that was done for each post in Jekyll, this step will require more or less effort. There are no hard and fast rules here except that `hugo server --watch` and the Hugo Academic example site are your friends. Test your changes and fix errors as needed. 33 | 34 | ## Publish 35 | The default is for Jekyll to publish the website to a `_site` directory, whereas Hugo publishes to a `public` directory. 36 | 37 | ## A practical example 38 | Alexandre Normand migrated his website from Jekyll to Hugo in less than a day. You can see all his changes by looking at this GitHub [diff](https://github.com/alexandre-normand/alexandre-normand/compare/869d69435bd2665c3fbf5b5c78d4c22759d7613a...b7f6605b1265e83b4b81495423294208cc74d610). However, bear in mind that this example is **not specific to the Academic theme nor does it use the latest version of Hugo**. 39 | -------------------------------------------------------------------------------- /public/teaching/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Courses Taught on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/teaching/ 6 | Recent content in Courses Taught on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Sun, 01 Jan 2017 00:00:00 +0000 11 | 12 | 13 | 14 | P177 15 | http://physics.ucr.edu/~flip/teaching/p177_2018/ 16 | Fri, 20 Apr 2018 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/teaching/p177_2018/ 19 | <p>This page will be filled in.</p> 20 | 21 | 22 | 23 | 24 | P165 25 | http://physics.ucr.edu/~flip/teaching/p165_2018/ 26 | Sat, 20 Jan 2018 00:00:00 +0000 27 | 28 | http://physics.ucr.edu/~flip/teaching/p165_2018/ 29 | <p>This course is supported by the UCR Library&rsquo;s Affordable Course Material Initiative. Our primary resource will be publicly available materials and lecture notes that are posted online.</p> 30 | 31 | 32 | 33 | 34 | P231 35 | http://physics.ucr.edu/~flip/teaching/p231_2017/ 36 | Wed, 20 Sep 2017 00:00:00 +0000 37 | 38 | http://physics.ucr.edu/~flip/teaching/p231_2017/ 39 | <p>This page will be filled in.</p> 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /content/teaching/p165_2018.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2018-01-20T00:00:00" 6 | draft = false 7 | 8 | title = "P165" 9 | subtitle = "Introduction to Particle Physics" 10 | type = "teaching" 11 | layout = "class" 12 | summary = "The theoretical and experimental foundations of high energy physics." 13 | term = "Winter" 14 | year = "2018" 15 | university = "UCR" 16 | instructor = "Prof. Flip Tanedo" 17 | syllabuspath = "" 18 | 19 | [[teachinfo]] 20 | info = "Lecturer" 21 | value = "Prof. Flip Tanedo" 22 | email1 = "flip.tanedo" 23 | email2 = "ucr" 24 | email3 = "edu" 25 | office = "Physics 3054" 26 | 27 | [[teachinfo]] 28 | info = "TA" 29 | value = "TBD" 30 | email1 = "student" 31 | email2 = "ucr" 32 | email3 = "edu" 33 | office = "Physics 2152" 34 | 35 | 36 | [[textbook]] 37 | title = "Introduction to High Energy Physics" 38 | author = "David Griffiths" 39 | url = "http://www.wiley.com/WileyCDA/WileyTitle/productCd-3527406018,subjectCd-PH20.html" 40 | comment = "Optional." 41 | 42 | 43 | 44 | [[courseinfo]] 45 | info = "Lecture" 46 | value = "TBA" 47 | comment = "TBA" 48 | 49 | [[courseinfo]] 50 | info = "Office Hours" 51 | value = "TBA" 52 | comment = "TBA" 53 | 54 | [[courseinfo]] 55 | info = "Final Exam" 56 | value = "TBA" 57 | comment = "TBA" 58 | 59 | 60 | # Optional featured image (relative to `static/img/` folder). 61 | [header] 62 | image = "background/chalkboard_thin.jpg" 63 | caption = "What is the Standard Model? How do we understand elementary particle physics with Feynman diagrams and Monte Carlo generators?" 64 | 65 | 66 | # Order that this section will appear in. 67 | weight = 1 68 | 69 | +++ 70 | 71 | 72 | This course is supported by the UCR Library's Affordable Course Material Initiative. Our primary resource will be publicly available materials and lecture notes that are posted online. 73 | -------------------------------------------------------------------------------- /layouts/partials/publication_li_detailed.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

5 | 6 |

7 | 8 | 9 | {{ if .Params.image_preview }} 10 | 11 |
12 | 13 | 15 | 16 |
17 |
18 | 19 | {{ else if .Params.header.image}} 20 | 21 |
22 | 23 | 24 | 25 |
26 |
27 | 28 | {{ else }} 29 | 30 |
31 | 32 | {{ end }} 33 | 34 | 37 | 38 |
39 | {{ if .Params.abstract_short }} 40 | {{ .Params.abstract_short | markdownify }} 41 | {{ else }} 42 | {{ .Params.abstract | markdownify}} 43 | {{ end }} 44 |
45 | 46 | 51 | 52 |
53 | {{ if .Params.publication_short }} 54 | {{ .Params.publication_short | markdownify }} 55 | {{ else }} 56 | {{ .Params.publication | markdownify }} 57 | {{ end }} 58 |
59 | 60 | 63 | 64 |
65 |
66 |
67 | -------------------------------------------------------------------------------- /content/publication/capture.md: -------------------------------------------------------------------------------- 1 | +++ 2 | abstract = "Dark matter may capture in the gravitational potential of celestial objects like the Earth. In scenarios where dark matter interacts through a light mediator, the subsequent annihilation into these mediators are smoking-gun signatures for new physics. These searches effectively remix the standard *complimentarity* of dark sector searches." 3 | abstract_short = "Dark matter may capture in the gravitational potential of celestial objects like the Earth. In scenarios where dark matter interacts through a light mediator, the subsequent annihilation into these mediators are smoking-gun signatures for new physics. These searches effectively remix the standard *complimentarity* of dark sector searches." 4 | authors = ["J Feng", "J Smolinsky", "P Tanedo"] 5 | date = "2013-07-01" 6 | image_preview = "" 7 | math = true 8 | publication_types = ["1"] 9 | publication = "In *Physics Review D*." 10 | publication_short = "In *Physics Review D*" 11 | selected = true 12 | title = "Dark Matter Capture" 13 | url_code = "" 14 | url_dataset = "" 15 | url_pdf = "" 16 | url_project = "" 17 | url_slides = "" 18 | url_video = "" 19 | 20 | [[url_custom]] 21 | name = "arXiv" 22 | url = "https://arxiv.org/abs/1509.07525" 23 | 24 | [[url_custom]] 25 | name = "inSPIRE" 26 | url = "https://inspirehep.net/record/1394829" 27 | 28 | [[url_custom]] 29 | name = "PRD" 30 | url = "https://journals.aps.org/prd/abstract/10.1103/PhysRevD.93.015014" 31 | 32 | [[url_custom]] 33 | name = "Davis Seminar" 34 | url = "http://particle.physics.ucdavis.edu/seminars/doku.php?id=2016:may:tanedo" 35 | 36 | [[url_custom]] 37 | name = "PI video" 38 | url = "https://www.perimeterinstitute.ca/videos/light-mediators-and-terrestrial-dark-matter-capture" 39 | 40 | 41 | 42 | # Optional featured image (relative to `static/img/` folder). 43 | [header] 44 | image = "research/IceCubeArtist.png" 45 | caption = "Dark matter capture and annihilation with light mediators." 46 | 47 | +++ 48 | 49 | 50 | -------------------------------------------------------------------------------- /content/teaching/p231_2017.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2017-09-20T00:00:00" 6 | draft = false 7 | 8 | title = "P231" 9 | subtitle = "Methods of Theoretical Physics" 10 | type = "teaching" 11 | layout = "class" 12 | summary = "A crash course in mathematical methods for graduate school." 13 | term = "Fall" 14 | year = "2017" 15 | university = "UCR" 16 | instructor = "Prof. Flip Tanedo" 17 | syllabuspath = "" 18 | 19 | [[teachinfo]] 20 | info = "Lecturer" 21 | value = "Prof. Flip Tanedo" 22 | email1 = "flip.tanedo" 23 | email2 = "ucr" 24 | email3 = "edu" 25 | office = "Physics 3054" 26 | 27 | [[teachinfo]] 28 | info = "TA" 29 | value = "TBD" 30 | email1 = "student" 31 | email2 = "ucr" 32 | email3 = "edu" 33 | office = "Physics 2152" 34 | 35 | 36 | [[textbook]] 37 | title = "Mathematics of Classical and Quantum Physics" 38 | author = "Byron and Fuller" 39 | url = "http://store.doverpublications.com/048667164x.html" 40 | comment = "Optional." 41 | 42 | [[textbook]] 43 | title = "Mathematical Methods in the Physical Sciences" 44 | author = "Mary Boas" 45 | url = "http://www.wiley.com/WileyCDA/WileyTitle/productCd-EHEP000360.html" 46 | comment = "Optional. You may use this instead of Byron and Fuller. Any edition." 47 | 48 | [[textbook]] 49 | title = "Statistics: A Guide to the Use of Statistical Methods in the Physical Sciences" 50 | author = "Barlow" 51 | url = "http://www.wiley.com/WileyCDA/WileyTitle/productCd-0471922951.html" 52 | comment = "Optional." 53 | 54 | 55 | 56 | [[courseinfo]] 57 | info = "Lecture" 58 | value = "MWF 10:10-11:00am" 59 | comment = "Physics 2111" 60 | 61 | [[courseinfo]] 62 | info = "Office Hours" 63 | value = "M 3:10-4:00pm" 64 | comment = "Physics 3054" 65 | 66 | [[courseinfo]] 67 | info = "Final Exam" 68 | value = "None" 69 | comment = "Pass all your other tests!" 70 | 71 | 72 | # Optional featured image (relative to `static/img/` folder). 73 | [header] 74 | image = "background/chalkboard_thin.jpg" 75 | caption = "This isn't a math class. This is boot camp for physics." 76 | 77 | 78 | # Order that this section will appear in. 79 | weight = 1 80 | 81 | +++ 82 | 83 | 84 | This page will be filled in. 85 | -------------------------------------------------------------------------------- /content/publication/beryllium.md: -------------------------------------------------------------------------------- 1 | +++ 2 | abstract = "An anomaly in rare Beryllium decays may be the signature of a new 17 MeV mediator. We diagnosed this anomaly with simplified models, identify the requirements of UV complete theories that could realize them, and outline the independent experimental program required to verify the hypothesis." 3 | abstract_short = "An anomaly in rare Beryllium decays may be the signature of a new 17 MeV mediator. We diagnosed this anomaly with simplified models, identify the requirements of UV complete theories that could realize them, and outline the independent experimental program required to verify the hypothesis." 4 | authors = ["J Feng", "B Fornal", "I Galon", "S Gardner", "T Tait", "P Tanedo"] 5 | date = "2013-07-01" 6 | image_preview = "" 7 | math = true 8 | publication_types = ["3"] 9 | publication = "In *PRL* and *Physics Review D*." 10 | publication_short = "In *PRL* and *Physics Review D*" 11 | selected = true 12 | title = "New Physics in Nuclear Transitions" 13 | url_code = "" 14 | url_dataset = "" 15 | url_pdf = "" 16 | url_project = "" 17 | url_slides = "" 18 | url_video = "" 19 | 20 | [[url_custom]] 21 | name = "arXiv PRL" 22 | url = "https://arxiv.org/abs/1604.07411" 23 | 24 | [[url_custom]] 25 | name = "inSPIRE PRL" 26 | url = "https://inspirehep.net/record/1452563?ln=en" 27 | 28 | 29 | [[url_custom]] 30 | name = "PRL" 31 | url = "https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.117.071803" 32 | 33 | [[url_custom]] 34 | name = "Altmetric PRL" 35 | url = "https://aps.altmetric.com/details/6976772" 36 | 37 | [[url_custom]] 38 | name = "arXiv PRD" 39 | url = "https://arxiv.org/abs/1608.03591" 40 | 41 | [[url_custom]] 42 | name = "inSPIRE PRD" 43 | url = "https://inspirehep.net/record/1481051?ln=en" 44 | 45 | [[url_custom]] 46 | name = "PRD" 47 | url = "https://journals.aps.org/prd/abstract/10.1103/PhysRevD.95.035017" 48 | 49 | [[url_custom]] 50 | name = "Explainer" 51 | url = "https://particlebites.com/?p=3970" 52 | 53 | [[url_custom]] 54 | name = "LAW Video" 55 | url = "https://lawphysics.wordpress.com/2016/08/31/w27-flip-tanedo-the-17-mev-anomaly-in-beryllium-8/" 56 | 57 | 58 | 59 | # Optional featured image (relative to `static/img/` folder). 60 | [header] 61 | image = "research/IPCArtistLong.png" 62 | caption = "Internal pair creation as a probe of new physics" 63 | 64 | +++ 65 | 66 | 67 | -------------------------------------------------------------------------------- /content/home/CV.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2016-04-20T00:00:00" 6 | draft = false 7 | 8 | title = "Curriculum Vitae" 9 | subtitle = "" 10 | widget = "CV" 11 | 12 | # CV location 13 | cv_pdf = "./files/Tanedo.pdf" 14 | 15 | # group logo location 16 | group_logo = "./img/identity/UCRHEP_03.png" 17 | group_name = "UCR Particle Theory Group" 18 | 19 | # Order that this section will appear in. 20 | weight = 2 21 | 22 | # List your academic interests. 23 | [interests] 24 | interests = [ 25 | "Dark Matter", 26 | "Supersymmetry", 27 | "Composite Higgs", 28 | "Extra Dimensions", 29 | "Phenomenology", 30 | "Astro/cosmo-particle" 31 | ] 32 | 33 | # List your qualifications (such as academic degrees). 34 | [[education.courses]] 35 | course = "PhD in Physics" 36 | institution = "Cornell University" 37 | year = 2013 38 | 39 | [[education.courses]] 40 | course = "MSc in Physics" 41 | institution = "Durham University / IPPP" 42 | year = 2008 43 | 44 | [[education.courses]] 45 | course = "MASt in Mathematics" 46 | institution = "Cambridge University" 47 | year = 2007 48 | 49 | [[education.courses]] 50 | course = "BS in Physics & Mathematics" 51 | institution = "Stanford University" 52 | year = 2008 53 | 54 | 55 | # List your honors 56 | [[honor.fellowships]] 57 | name = "UCI Chancellor's Advance Postdoctoral Fellow" 58 | years = "2014 - 2015" 59 | 60 | [[honor.fellowships]] 61 | name = "Paul & Daisy Soros Fellowship for New Americans" 62 | years = "2010 - 2012" 63 | 64 | [[honor.fellowships]] 65 | name = "NSF Graduate Research Fellow" 66 | years = "2006 - 2011" 67 | 68 | [[honor.fellowships]] 69 | name = "Marshall Scholarship" 70 | years = "2006 - 2008" 71 | 72 | 73 | +++ 74 | 75 | **Flip Tanedo** is an assistant professor in theoretical physics at the University of California, Riverside. His research focuses on models and signatures of physics beyond the Standard Model, including dark matter, supersymmetry, and extra dimensions. His creative thinking is often done while swimming or stuck in traffic. 76 | 77 | 82 | -------------------------------------------------------------------------------- /layouts/partials/widgets/CV.html: -------------------------------------------------------------------------------- 1 | {{ $page := .page }} 2 | 3 | 4 |
5 |
6 |

{{ with $page.Title }}{{ . | markdownify }}{{ end }}

7 | {{ with $page.Params.subtitle }}

{{ . | markdownify }}

{{ end }} 8 | 9 |

10 | 11 | Download Complete CV 12 | 13 | 14 | 17 |

18 | 19 | 20 |

21 | 22 | 23 |

24 | 25 | 26 | 27 |
28 |
29 | {{ $page.Content }} 30 | 31 | 32 | 33 |
34 | {{ with $page.Params.honor }} 35 |
    36 | {{ range .fellowships }} 37 |
  • {{ .name }}, {{ .years }}
  • 38 | {{ end }} 39 |
40 | {{ end }} 41 |
42 | 43 | 44 |
45 | 46 | {{ with $page.Params.interests }} 47 |
48 |

{{ i18n "interests" | markdownify }}

49 |
    50 | {{ range .interests }} 51 |
  • {{ . }}
  • 52 | {{ end }} 53 |
54 |
55 | {{ end }} 56 | 57 | {{ with $page.Params.education }} 58 |
59 |

{{ i18n "education" | markdownify }}

60 |
    61 | {{ range .courses }} 62 |
  • 63 | 64 |
    65 |

    {{ .course }}{{ with .year }}, {{ . }}{{ end }}

    66 |

    {{ .institution }}

    67 |
    68 |
  • 69 | {{ end }} 70 |
71 |
72 | {{ end }} 73 | 74 |
75 | 76 |
77 |
78 | -------------------------------------------------------------------------------- /content/home/research.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # An example of using the custom widget to create your own homepage section. 3 | # To create more sections, duplicate this file and edit the values below as desired. 4 | 5 | date = "2016-04-20T00:00:00" 6 | draft = false 7 | 8 | title = "Research" 9 | subtitle = "" 10 | widget = "research" 11 | 12 | # Order that this section will appear in. 13 | weight = 4 14 | 15 | # group logo location 16 | group_logo = "./img/identity/UCRHEP_03.png" 17 | group_name = "UCR Particle Theory Group" 18 | group_site = "http://theory.ucr.edu" 19 | 20 | # Research blurb 21 | research_blurb = "I am interested in the many ways in which we may probe new physics, including the use of colliders, underground experiments, astrophysics, nuclear physics, and cosmology." 22 | 23 | # Student recruitment blurb 24 | recruit_blurb = "Students interested in working with me should contact me directly." 25 | 26 | # Research title 27 | research_title = "" 28 | 29 | 30 | # my Students 31 | student_title = "Students" 32 | 33 | [[mygroup.students]] 34 | name = "Ian Chaffey" 35 | position = "Grad" 36 | photo = "./img/identity/UCRHEP_03.png" 37 | website = "http://theory.ucr.edu/group.html" 38 | 39 | [[mygroup.students]] 40 | name = "Adam Green" 41 | position = "UG" 42 | photo = "http://theory.ucr.edu/images/group/template_agreen.jpg" 43 | website = "http://sps.ucr.edu/mentor/adam-green" 44 | 45 | [[mygroup.students]] 46 | name = "Syris Norelli" 47 | position = "UG" 48 | photo = "http://theory.ucr.edu/images/group/template_syris.jpg" 49 | website = "https://github.com/OrderFromChaos" 50 | 51 | 52 | 53 | +++ 54 | 55 | ## Research Program 56 | 57 | My primary research focus is understanding how new forces may connect dark matter and ordinary matter. 58 | 59 | ![Example](img/research/FigureTableWeb.png) 60 | 61 | The theoretical scaffolding of particle physics relates different experimental handles for testing these models. In turn, hints of new particles may first manifest themselves in astronomical observations not traditionally in the real of high-energy physics. 62 | 63 | ## Related Work 64 | 65 | The pressing question that the Large Hadron Collider was built to answer is why the **Higgs boson** is so surprisingly light. The possible answers include ideas such as supersymmetry and extra dimensions/compositeness. While the so-called Higgs Hierarchy Problem remains a mystery, these ideas may find new life applied to our struggle to understand the **dark sector**. 66 | 67 | ## Prospective Students 68 | 69 | Graduate students interested in working with me should [review these lectures](http://arxiv.org/abs/1602.04228). 70 | -------------------------------------------------------------------------------- /layouts/partials/navbar0.html: -------------------------------------------------------------------------------- 1 | 75 | -------------------------------------------------------------------------------- /layouts/partials/navbar1.html: -------------------------------------------------------------------------------- 1 | 75 | -------------------------------------------------------------------------------- /layouts/teaching/class.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | {{ partial "navbar.html" . }} 3 |
4 | 5 | {{ partial "header_image.html" . }} 6 | 7 |
8 |

{{ .Params.subtitle }}

9 |

{{ .Params.university }} {{ .Title }}, {{ .Params.term }} {{ .Params.year }}

10 | 11 |
12 | 13 |
14 |
15 | 16 | {{ if .Params.image }} 17 | 18 | {{end}} 19 | 20 | 21 | {{ range .Params.teachinfo }} 22 | {{ .info }}: {{ .value }} 23 | 24 | () 25 | 26 | ({{ .office }}) 27 |
28 | {{ end }} 29 | 30 | 31 | 32 | 33 | 34 |

Textbooks

35 | 36 | 41 | 42 | {{ range .Params.textbook }} 43 |   44 | {{ .title }}, 45 | {{ .author }}. 46 | {{ .comment }} 47 |
48 | {{ end }} 49 | 50 | 51 | 52 |

Course Information

53 | 54 | 55 |
56 |
57 |
58 | {{ range .Params.courseinfo }} 59 |
60 |
61 | {{ .info }}: 62 |
63 |
64 | {{ .value }} 65 | {{ .comment }} 66 |
67 |
68 | {{ end }} 69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 |
77 | 78 |
{{ .Content }}
79 | 80 |
81 | 82 |
83 | {{ partial "section_pager.html" . }} 84 |
85 | 86 | {{ partial "footer_container.html" . }} 87 | {{ partial "footer.html" . }} 88 | -------------------------------------------------------------------------------- /layouts/partials/navbar.html: -------------------------------------------------------------------------------- 1 | 77 |
78 | -------------------------------------------------------------------------------- /content/post/widgets.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2016-04-20T11:00:00" 3 | draft = false 4 | tags = ["academic", "hugo"] 5 | title = "Customizing the homepage with widgets" 6 | math = false 7 | summary = """ 8 | Enable/disable and configure widgets to customize your homepage. 9 | """ 10 | +++ 11 | 12 | Homepage widgets display as sections on the homepage. They can be enabled/disabled and configured as desired. Academic has the following widgets available to use: 13 | 14 | - About/biography 15 | - Selected publications 16 | - Recent publications 17 | - Recent news/blog posts 18 | - Projects 19 | - Selected talks 20 | - Recent talks 21 | - Contact 22 | - Custom widget (demonstrated with the *teaching* example) 23 | 24 | The example site that you copied to create your site uses all the different types of widget (except talks), so you can generally just delete the widgets you don't need and customize the parameters of the widgets you wish to keep. 25 | 26 | The parameters for each widget vary. They can be found in the preamble/frontmatter (between the pair of `+++`) for each widget installed in the `content/home/` folder. 27 | 28 | {{% alert note %}} 29 | By default, publications will be displayed in a simple list. If you prefer a more detailed list with abstract and image, you can enable the detailed publication list on the homepage by setting `detailed_list = true` in `content/home/publications.md`. 30 | {{% /alert %}} 31 | 32 | ## Add a widget to the homepage 33 | 34 | To add a widget manually, copy the relevant widget from `themes/academic/exampleSite/content/home/` to your `content/home/` folder. 35 | 36 | Widget identifiers are set to their respective filenames, so a `content/home/about.md` widget can be linked from the navigation bar by setting the relevant URL as `"#about"` in `config.toml`. 37 | 38 | This means that if you want to use multiple instances of a widget, each widget will be assigned a unique ID based on the filename that you set. You can then use that ID for linking, like in the above example. 39 | 40 | ## Using the custom widget 41 | 42 | You can use the custom widget to create your own home page sections. 43 | 44 | Simply duplicate (copy/paste) and rename the example *teaching* file at `content/home/teaching.md`. Then edit the section title, weight (refer to *Ordering sections* below), and content as desired. 45 | 46 | You may also wish to add a navigation link to the top of the page that points to the new section. This can be achieved by adding something similar to the following lines to your `config.toml`, where the URL will consist of the first title word in lowercase: 47 | 48 | [[menu.main]] 49 | name = "Research" 50 | url = "#research" 51 | weight = 10 52 | 53 | ## Remove a widget from the homepage 54 | 55 | If you do not require a particular widget, you can simply delete any associated files from the `content/home/` folder. 56 | 57 | To remove a navigation link from the top of the page, remove the associated `[[menu.main]]` entry in `config.toml`. 58 | 59 | ## Ordering widgets 60 | 61 | The order that the homepage widgets are displayed in is defined by the `weight` parameter in each of the files in the `content/home/` directory. The widgets are displayed in ascending order of their `weight`, so you can simply edit the `weight` parameters as desired. 62 | -------------------------------------------------------------------------------- /layouts/partials/widgets/contact.html: -------------------------------------------------------------------------------- 1 | {{ $ := .root }} 2 | {{ $page := .page }} 3 | {{ $autolink := default true $page.Params.autolink }} 4 | 5 | 6 |
7 |
8 |

{{ with $page.Title }}{{ . | markdownify }}{{ end }}

9 | {{ with $page.Params.subtitle }}

{{ . | markdownify }}

{{ end }} 10 |
11 |
12 | {{ with $page.Content }}

{{ . | markdownify }}

{{ end }} 13 | 14 |
    15 | 16 | {{ with $.Site.Params.email }} 17 |
  • 18 | 19 | 20 | {{- if $autolink }}{{ . }}{{ else }}{{ . }}{{ end -}} 21 | 22 |
  • 23 | {{ end }} 24 | 25 | 26 | {{ with $.Site.Params.email1 }} 27 |
  • 28 | 29 | 30 | 31 | 32 | 33 |
  • 34 | {{ end }} 35 | 36 | 37 | {{ with $.Site.Params.keybase }} 38 |
  • 39 | 40 | 41 | @{{ . }} on Keybase. 42 | 43 |
  • 44 | {{ end }} 45 | 46 | {{ with $.Site.Params.phone }} 47 |
  • 48 | 49 | 50 | {{- if $autolink }}{{ . }}{{ else }}{{ . }}{{ end -}} 51 | 52 |
  • 53 | {{ end }} 54 | 55 | {{ with $.Site.Params.skype }} 56 |
  • 57 | 58 | 59 | {{- if $autolink }}{{ . }}{{ else }}{{ . }}{{ end -}} 60 | 61 |
  • 62 | {{ end }} 63 | 64 | {{ with $.Site.Params.telegram }} 65 |
  • 66 | 67 | 68 | {{- if $autolink }}@{{ . }}{{ else }}@{{ . }}{{ end -}} 69 | 70 |
  • 71 | {{ end }} 72 | 73 | {{ with $.Site.Params.address }} 74 |
  • 75 | 76 | {{ . }} 77 |
  • 78 | {{ end }} 79 | 80 | {{ with $.Site.Params.office_hours }} 81 |
  • 82 | 83 | {{ . }} 84 |
  • 85 | {{ end }} 86 | 87 |
88 | 89 |
90 |
91 | -------------------------------------------------------------------------------- /public/tags/jekyll/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Jekyll on Flip Tanedo @ UCR 5 | http://physics.ucr.edu/~flip/tags/jekyll/ 6 | Recent content in Jekyll on Flip Tanedo @ UCR 7 | Hugo -- gohugo.io 8 | en-us 9 | &copy; 2017 Flip Tanedo 10 | Mon, 10 Mar 2014 00:00:00 +0000 11 | 12 | 13 | 14 | Migrate from Jekyll to Hugo 15 | http://physics.ucr.edu/~flip/post/migrate-from-jekyll/ 16 | Mon, 10 Mar 2014 00:00:00 +0000 17 | 18 | http://physics.ucr.edu/~flip/post/migrate-from-jekyll/ 19 | 20 | 21 | <p>Here are a few tips for migrating an existing website from Jekyll to Hugo. These tips can be applied in conjunction with following Hugo Academic&rsquo;s <a href="http://physics.ucr.edu/~flip/post/getting-started/" target="_blank">getting started guide</a>.</p> 22 | 23 | <h2 id="move-static-content-to-static">Move static content to <code>static</code></h2> 24 | 25 | <p>Jekyll has a rule that any directory not starting with <code>_</code> will be copied as-is to the <code>_site</code> output. Hugo keeps all static content under <code>static</code>. You should therefore move it all there. 26 | With Jekyll, something that looked like</p> 27 | 28 | <pre><code>▾ &lt;root&gt;/ 29 | ▾ images/ 30 | logo.png 31 | </code></pre> 32 | 33 | <p>should become</p> 34 | 35 | <pre><code>▾ &lt;root&gt;/ 36 | ▾ static/ 37 | ▾ images/ 38 | logo.png 39 | </code></pre> 40 | 41 | <p>Additionally, you&rsquo;ll want any files that should reside at the root (such as <code>CNAME</code>) to be moved to <code>static</code>.</p> 42 | 43 | <h2 id="fix-content">Fix content</h2> 44 | 45 | <p>Depending on the amount of customization that was done for each post in Jekyll, this step will require more or less effort. There are no hard and fast rules here except that <code>hugo server --watch</code> and the Hugo Academic example site are your friends. Test your changes and fix errors as needed.</p> 46 | 47 | <h2 id="publish">Publish</h2> 48 | 49 | <p>The default is for Jekyll to publish the website to a <code>_site</code> directory, whereas Hugo publishes to a <code>public</code> directory.</p> 50 | 51 | <h2 id="a-practical-example">A practical example</h2> 52 | 53 | <p>Alexandre Normand migrated his website from Jekyll to Hugo in less than a day. You can see all his changes by looking at this GitHub <a href="https://github.com/alexandre-normand/alexandre-normand/compare/869d69435bd2665c3fbf5b5c78d4c22759d7613a...b7f6605b1265e83b4b81495423294208cc74d610" target="_blank">diff</a>. However, bear in mind that this example is <strong>not specific to the Academic theme nor does it use the latest version of Hugo</strong>.</p> 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /layouts/publication/single.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | {{ partial "navbar.html" . }} 3 |
4 | 5 | {{ partial "header_image.html" . }} 6 | 7 |
8 |

{{ .Title }}

9 | 14 | 15 | 18 |
19 | 20 |
21 |
22 | 23 | {{ if .Params.image }} 24 | 25 | {{end}} 26 | 27 |

{{ i18n "abstract" }}

28 |

{{ .Params.abstract | markdownify }}

29 | 30 | {{ if (.Params.publication_types) and (ne (index .Params.publication_types 0) "0") }} 31 |
32 |
33 |
34 |
35 | 43 |
44 |
45 |
46 |
47 |
48 | {{ end }} 49 | 50 |
51 |
52 |
53 |
54 |
{{ i18n "publication" }}
55 |
{{ .Params.publication | markdownify }}
56 |
57 |
58 |
59 |
60 |
61 | 62 |
63 |
64 |
65 |
66 |
{{ i18n "date" }}
67 | 70 |
71 |
72 |
73 |
74 |
75 | 76 |
77 |
78 |
79 |
80 |
{{ i18n "links" }}
81 |
82 | 83 | {{ partial "publication_links" (dict "content" . "is_list" 0) }} 84 | 85 |
86 |
87 |
88 |
89 |
90 |
91 | 92 |
93 | 94 |
{{ .Content }}
95 | 96 |
97 | 98 |
99 | {{ partial "section_pager.html" . }} 100 |
101 | 102 | {{ partial "footer_container.html" . }} 103 | {{ partial "footer.html" . }} 104 | -------------------------------------------------------------------------------- /layouts/partials/widgets/aboutme.html: -------------------------------------------------------------------------------- 1 | {{ $ := .root }} 2 | {{ $page := .page }} 3 | 4 | 5 | 98 | -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {{ .Hugo.Generator }} 10 | {{ with .Site.Params.name }}{{ end }} 11 | {{ with .Site.Params.role }}{{ end }} 12 | 13 | {{/* Default to enabling highlighting, but allow the user to override it in .Params or .Site.Params. 14 | Use $.Scratch to store "highlight_enabled", so that we can read it again in footer.html. */}} 15 | {{ $.Scratch.Set "highlight_enabled" true }} 16 | {{ if isset .Params "highlight" }} 17 | {{ $.Scratch.Set "highlight_enabled" .Params.highlight }} 18 | {{ else if isset .Site.Params "highlight" }} 19 | {{ $.Scratch.Set "highlight_enabled" .Site.Params.highlight }} 20 | {{ end }} 21 | {{ if $.Scratch.Get "highlight_enabled" }} 22 | {{ $v := .Site.Params.highlight_version | default "9.9.0" }} 23 | {{ with .Site.Params.highlight_style }} 24 | 25 | {{ else }} 26 | 27 | {{ end }} 28 | {{ end }} 29 | {{ if not .Site.Params.disable_sri }} 30 | {{ printf "" .Site.Data.sri.css.bootstrap | safeHTML }} 31 | {{ printf "" .Site.Data.sri.css.academicons | safeHTML }} 32 | {{ printf "" .Site.Data.sri.css.fontAwesome | safeHTML }} 33 | {{ else }} 34 | 35 | 36 | 37 | {{ end }} 38 | {{/* We cannot use SRI with Google Fonts because the CSS is dynamically generated according to the user agent */}} 39 | 40 | 41 | {{ range .Site.Params.custom_css }} 42 | 43 | {{ end }} 44 | 45 | {{ if .Site.GoogleAnalytics }} 46 | 54 | 55 | {{ if not .Site.Params.disable_sri }} 56 | {{ printf "" .Site.Data.sri.js.autotrack | safeHTML }} 57 | {{ else }} 58 | 59 | {{ end }} 60 | {{ end }} 61 | 62 | 63 | 64 | 73 | 76 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | {{ partial "head_custom" . }} 91 | 92 | {{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }} 93 | 94 | 95 | 96 | 97 | 98 |
99 | 100 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | http://physics.ucr.edu/~flip/teaching/p177_2018/ 9 | 2018-04-20T00:00:00+00:00 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | http://physics.ucr.edu/~flip/teaching/p165_2018/ 18 | 2018-01-20T00:00:00+00:00 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | http://physics.ucr.edu/~flip/teaching/p231_2017/ 27 | 2017-09-20T00:00:00+00:00 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | http://physics.ucr.edu/~flip/tags/academic/ 36 | 2017-01-01T00:00:00+00:00 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | http://physics.ucr.edu/~flip/teaching/ 45 | 2017-01-01T00:00:00+00:00 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | http://physics.ucr.edu/~flip/talk/example-talk/ 54 | 2017-01-01T00:00:00+00:00 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | http://physics.ucr.edu/~flip/post/ 63 | 2017-01-01T00:00:00+00:00 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | http://physics.ucr.edu/~flip/publication/ 72 | 2017-01-01T00:00:00+00:00 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | http://physics.ucr.edu/~flip/talk/ 81 | 2017-01-01T00:00:00+00:00 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | http://physics.ucr.edu/~flip/post/getting-started/ 90 | 2016-04-20T12:00:00+00:00 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | http://physics.ucr.edu/~flip/post/widgets/ 99 | 2016-04-20T11:00:00+00:00 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | http://physics.ucr.edu/~flip/post/managing-content/ 108 | 2016-04-20T11:00:00+00:00 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | http://physics.ucr.edu/~flip/post/writing-markdown-latex/ 117 | 2016-04-20T10:00:00+00:00 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | http://physics.ucr.edu/~flip/arxiv/ 126 | 2016-04-20T00:00:00+00:00 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | http://physics.ucr.edu/~flip/post/migrate-from-jekyll/ 135 | 2014-03-10T00:00:00+00:00 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | http://physics.ucr.edu/~flip/publication/capture/ 144 | 2013-07-01T00:00:00+00:00 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | http://physics.ucr.edu/~flip/publication/beryllium/ 153 | 2013-07-01T00:00:00+00:00 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | http://physics.ucr.edu/~flip/publication_types/1/ 162 | 2013-07-01T00:00:00+00:00 163 | 0 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | http://physics.ucr.edu/~flip/publication_types/3/ 172 | 2013-07-01T00:00:00+00:00 173 | 0 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | http://physics.ucr.edu/~flip/categories/ 182 | 0 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | http://physics.ucr.edu/~flip/ 191 | 2016-04-20T00:00:00+00:00 192 | 0 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | http://physics.ucr.edu/~flip/tags/hugo/ 201 | 2016-04-20T12:00:00+00:00 202 | 0 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | http://physics.ucr.edu/~flip/tags/jekyll/ 211 | 2014-03-10T00:00:00+00:00 212 | 0 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | http://physics.ucr.edu/~flip/publication_types/ 221 | 2013-07-01T00:00:00+00:00 222 | 0 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | http://physics.ucr.edu/~flip/tags/ 231 | 2017-01-01T00:00:00+00:00 232 | 0 233 | 234 | 235 | 236 | 237 | -------------------------------------------------------------------------------- /public/css/flip2017.css: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * Additional Styles from Flip; Aug 2017 3 | * Relative to Hugo Theme Academic defaults 4 | **************************************************/ 5 | 6 | /* GENERAL FORMATTING */ 7 | /* Make the default text size smaller, and Raleway */ 8 | @media screen and (min-width: 58em) { 9 | html { 10 | font-size: 18px; 11 | } 12 | } 13 | 14 | /* GRAY TEXT */ 15 | .comment{ 16 | font-family: 'Raleway', sans-serif; 17 | color: #AAAAAA; 18 | } 19 | 20 | body{ 21 | /*font-family: 'Raleway', sans-serif;*/ 22 | background-color:#333333; 23 | /*background-color: #ffffff;*/ 24 | } 25 | 26 | #THECONTENT{ 27 | background-color: #ffffff; 28 | } 29 | /* 30 | WHAT THIS IS: 31 | In body{} above I set the background color to dark gray. 32 | This is so that the background color matches the footer. 33 | (Otherwise if you over-scroll then you end up getting white) 34 | #THECONTENT is a div tag that opens at the bottom of navbar.html 35 | and closes at the top of footer_container.html 36 | That makes the main content white. 37 | */ 38 | 39 | 40 | .btn{ 41 | font-family: 'Raleway', sans-serif; 42 | } 43 | 44 | /* FOR HONORS LIST IN CV */ 45 | .ul-honors{ 46 | font-family: 'Raleway', sans-serif; 47 | color: #AAAAAA; 48 | list-style: none; 49 | } 50 | 51 | 52 | 53 | #profile .portrait { 54 | background-image: url('../img/portrait.jpg'); 55 | width: 230px; 56 | height: 230px; 57 | margin: 0 auto; 58 | border-radius: 50%; 59 | background-size: cover; 60 | -webkit-background-size: cover; 61 | -moz-background-size: cover; 62 | } 63 | 64 | 65 | 66 | 67 | #flip-moved-social-icons ul.social-icon { 68 | display: inline-flex; 69 | flex-direction: row; 70 | flex-wrap: wrap; 71 | list-style: none; 72 | padding: 0; 73 | margin-top: 30px; 74 | } 75 | 76 | #flip-moved-social-icons .social-icon li { 77 | margin-right: 10px; 78 | } 79 | 80 | #flip-moved-social-icons .social-icon li:last-of-type { 81 | margin-right: 0; 82 | } 83 | 84 | #flip-moved-social-icons .social-icon li:hover { 85 | transform: scale(1.2) 86 | } 87 | 88 | #flip-moved-social-icons a{ 89 | color: #AAAAAA; 90 | } 91 | 92 | #flip-moved-social-icons a:hover{ 93 | color: #0095eb; 94 | } 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | /* Watermark 103 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 104 | 105 | 106 | /* to make "white bg" transparent */ 107 | .home-section { 108 | background-color: transparent; 109 | /*z-index: 1;*/ /* Bootstraps default z-indices are around 1000 */ 110 | } 111 | 112 | #watermark{ 113 | /*background-image:url('http://physics.ucr.edu/~flip/images/BG_Bundle2.jpg');*/ 114 | background-size: 700px 350px; 115 | background-repeat:no-repeat; 116 | background-position:left top; 117 | margin: 0; 118 | padding: 0; 119 | position: absolute; 120 | top: 30px; 121 | left: 0px; 122 | pointer-events: none; 123 | /*z-index: 0;*/ 124 | /* -1: doesn't show on home page; 0+: no links on other pages */ 125 | /* less than zero */ 126 | /* causes problems with other pages */ 127 | /* solution: https://stackoverflow.com/questions/3538489/html-css-make-a-div-invisible-to-clicks */ 128 | height: 100%; 129 | width: 100%; 130 | text-align: right; 131 | opacity: 0.1; 132 | } 133 | 134 | .sidebarpic{ 135 | width: 200px; 136 | height: 200px; 137 | text-align: center; 138 | margin: 0 auto; 139 | } 140 | 141 | 142 | /* FOR STUDENT LIST IN RESEARCH */ 143 | /*https://stackoverflow.com/questions/34667466/how-to-center-this-horizontal-list-of-images*/ 144 | /*better: https://stackoverflow.com/questions/19645931/inline-images-with-captions-centered-under-each*/ 145 | .ul-students{ 146 | font-family: 'Raleway', sans-serif; 147 | color: #AAAAAA; 148 | } 149 | 150 | .ul-students:after { 151 | content: attr(title); 152 | display: block; 153 | text-align: center; 154 | } 155 | 156 | .ul-students ul { 157 | text-align: center; 158 | padding: 0; 159 | } 160 | 161 | .ul-students li { 162 | width: 25%; 163 | display: inline-block; 164 | vertical-align: bottom; 165 | font-size: .75rem; 166 | } 167 | 168 | .ul-students li img { 169 | max-width: 80%; 170 | height: auto; 171 | } 172 | 173 | /* STUDENT photos on index.html */ 174 | .studentpic{ 175 | border-radius: 10px; 176 | text-align: center; 177 | margin: 0 auto; 178 | max-width: 100%; 179 | } 180 | 181 | 182 | 183 | /* FOOTER */ 184 | 185 | footer { 186 | font-family: 'Raleway', sans-serif; 187 | background-color:#333333; 188 | } 189 | 190 | 191 | #botbar1{ 192 | background-color:#C1BBAB; 193 | margin: 0; 194 | padding: 0; 195 | position:relative; 196 | top: 75px; 197 | left: 0px; 198 | z-index: 9; 199 | height: 7px; 200 | width: 100%; 201 | } 202 | /* Why is this exactly 927? I do not know! Trial-and-error. */ 203 | @media screen and (max-width: 927px) { 204 | #botbar1{ 205 | top: 65px; 206 | } 207 | } 208 | 209 | 210 | #feynmanfoot{ 211 | /*background-image:url('http://physics.ucr.edu/~flip/images/feynmanfooter.png');*/ 212 | background-size: 250px 200px; 213 | background-repeat:no-repeat; 214 | background-position:left top; 215 | pointer-events: none; 216 | margin: 0; 217 | padding: 0; 218 | position: absolute; 219 | position: relative; 220 | bottom: 97px; 221 | /*left: 700px;*/ 222 | left: 75vw; 223 | right:25vw; 224 | z-index: 200; 225 | height: 200px; 226 | width: 250px; 227 | text-align: right; 228 | } 229 | @media screen and (max-width: 980px) { 230 | #feynmanfoot{ 231 | left: 68vw; 232 | } 233 | } 234 | @media screen and (max-width: 767px) { 235 | #feynmanfoot{ 236 | left: 50vw; 237 | } 238 | } 239 | @media screen and (max-width: 480px) { 240 | #feynmanfoot{ 241 | left: 10vw; 242 | } 243 | } 244 | 245 | /* NAVBAR coloring */ 246 | 247 | .navbar-default{ 248 | background-color:rgba(0, 0, 0, 0.75); 249 | } 250 | 251 | .navbar-default .navbar-brand { 252 | color: white; 253 | } 254 | 255 | .navbar-default .navbar-nav li a{ 256 | color: white; 257 | } 258 | 259 | .navbar-default .navbar-nav li a:hover{ 260 | background-color: #333333; 261 | } 262 | -------------------------------------------------------------------------------- /static/css/flip2017.css: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * Additional Styles from Flip; Aug 2017 3 | * Relative to Hugo Theme Academic defaults 4 | **************************************************/ 5 | 6 | /* GENERAL FORMATTING */ 7 | /* Make the default text size smaller, and Raleway */ 8 | @media screen and (min-width: 58em) { 9 | html { 10 | font-size: 18px; 11 | } 12 | } 13 | 14 | /* GRAY TEXT */ 15 | .comment{ 16 | font-family: 'Raleway', sans-serif; 17 | color: #AAAAAA; 18 | } 19 | 20 | body{ 21 | /*font-family: 'Raleway', sans-serif;*/ 22 | background-color:#333333; 23 | /*background-color: #ffffff;*/ 24 | } 25 | 26 | #THECONTENT{ 27 | background-color: #ffffff; 28 | } 29 | /* 30 | WHAT THIS IS: 31 | In body{} above I set the background color to dark gray. 32 | This is so that the background color matches the footer. 33 | (Otherwise if you over-scroll then you end up getting white) 34 | #THECONTENT is a div tag that opens at the bottom of navbar.html 35 | and closes at the top of footer_container.html 36 | That makes the main content white. 37 | */ 38 | 39 | 40 | .btn{ 41 | font-family: 'Raleway', sans-serif; 42 | } 43 | 44 | /* FOR HONORS LIST IN CV */ 45 | .ul-honors{ 46 | font-family: 'Raleway', sans-serif; 47 | color: #AAAAAA; 48 | list-style: none; 49 | } 50 | 51 | 52 | 53 | #profile .portrait { 54 | background-image: url('../img/portrait.jpg'); 55 | width: 230px; 56 | height: 230px; 57 | margin: 0 auto; 58 | border-radius: 50%; 59 | background-size: cover; 60 | -webkit-background-size: cover; 61 | -moz-background-size: cover; 62 | } 63 | 64 | 65 | 66 | 67 | #flip-moved-social-icons ul.social-icon { 68 | display: inline-flex; 69 | flex-direction: row; 70 | flex-wrap: wrap; 71 | list-style: none; 72 | padding: 0; 73 | margin-top: 30px; 74 | } 75 | 76 | #flip-moved-social-icons .social-icon li { 77 | margin-right: 10px; 78 | } 79 | 80 | #flip-moved-social-icons .social-icon li:last-of-type { 81 | margin-right: 0; 82 | } 83 | 84 | #flip-moved-social-icons .social-icon li:hover { 85 | transform: scale(1.2) 86 | } 87 | 88 | #flip-moved-social-icons a{ 89 | color: #AAAAAA; 90 | } 91 | 92 | #flip-moved-social-icons a:hover{ 93 | color: #0095eb; 94 | } 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | /* Watermark 103 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 104 | 105 | 106 | /* to make "white bg" transparent */ 107 | .home-section { 108 | background-color: transparent; 109 | /*z-index: 1;*/ /* Bootstraps default z-indices are around 1000 */ 110 | } 111 | 112 | #watermark{ 113 | /*background-image:url('http://physics.ucr.edu/~flip/images/BG_Bundle2.jpg');*/ 114 | background-size: 700px 350px; 115 | background-repeat:no-repeat; 116 | background-position:left top; 117 | margin: 0; 118 | padding: 0; 119 | position: absolute; 120 | top: 30px; 121 | left: 0px; 122 | pointer-events: none; 123 | /*z-index: 0;*/ 124 | /* -1: doesn't show on home page; 0+: no links on other pages */ 125 | /* less than zero */ 126 | /* causes problems with other pages */ 127 | /* solution: https://stackoverflow.com/questions/3538489/html-css-make-a-div-invisible-to-clicks */ 128 | height: 100%; 129 | width: 100%; 130 | text-align: right; 131 | opacity: 0.1; 132 | } 133 | 134 | .sidebarpic{ 135 | width: 200px; 136 | height: 200px; 137 | text-align: center; 138 | margin: 0 auto; 139 | } 140 | 141 | 142 | /* FOR STUDENT LIST IN RESEARCH */ 143 | /*https://stackoverflow.com/questions/34667466/how-to-center-this-horizontal-list-of-images*/ 144 | /*better: https://stackoverflow.com/questions/19645931/inline-images-with-captions-centered-under-each*/ 145 | .ul-students{ 146 | font-family: 'Raleway', sans-serif; 147 | color: #AAAAAA; 148 | } 149 | 150 | .ul-students:after { 151 | content: attr(title); 152 | display: block; 153 | text-align: center; 154 | } 155 | 156 | .ul-students ul { 157 | text-align: center; 158 | padding: 0; 159 | } 160 | 161 | .ul-students li { 162 | width: 25%; 163 | display: inline-block; 164 | vertical-align: bottom; 165 | font-size: .75rem; 166 | } 167 | 168 | .ul-students li img { 169 | max-width: 80%; 170 | height: auto; 171 | } 172 | 173 | /* STUDENT photos on index.html */ 174 | .studentpic{ 175 | border-radius: 10px; 176 | text-align: center; 177 | margin: 0 auto; 178 | max-width: 100%; 179 | } 180 | 181 | 182 | 183 | /* FOOTER */ 184 | 185 | footer { 186 | font-family: 'Raleway', sans-serif; 187 | background-color:#333333; 188 | } 189 | 190 | 191 | #botbar1{ 192 | background-color:#C1BBAB; 193 | margin: 0; 194 | padding: 0; 195 | position:relative; 196 | top: 75px; 197 | left: 0px; 198 | z-index: 9; 199 | height: 7px; 200 | width: 100%; 201 | } 202 | /* Why is this exactly 927? I do not know! Trial-and-error. */ 203 | @media screen and (max-width: 927px) { 204 | #botbar1{ 205 | top: 65px; 206 | } 207 | } 208 | 209 | 210 | #feynmanfoot{ 211 | /*background-image:url('http://physics.ucr.edu/~flip/images/feynmanfooter.png');*/ 212 | background-size: 250px 200px; 213 | background-repeat:no-repeat; 214 | background-position:left top; 215 | pointer-events: none; 216 | margin: 0; 217 | padding: 0; 218 | position: absolute; 219 | position: relative; 220 | bottom: 97px; 221 | /*left: 700px;*/ 222 | left: 75vw; 223 | right:25vw; 224 | z-index: 200; 225 | height: 200px; 226 | width: 250px; 227 | text-align: right; 228 | } 229 | @media screen and (max-width: 980px) { 230 | #feynmanfoot{ 231 | left: 68vw; 232 | } 233 | } 234 | @media screen and (max-width: 767px) { 235 | #feynmanfoot{ 236 | left: 50vw; 237 | } 238 | } 239 | @media screen and (max-width: 480px) { 240 | #feynmanfoot{ 241 | left: 10vw; 242 | } 243 | } 244 | 245 | /* NAVBAR coloring */ 246 | 247 | .navbar-default{ 248 | background-color:rgba(0, 0, 0, 0.75); 249 | } 250 | 251 | .navbar-default .navbar-brand { 252 | color: white; 253 | } 254 | 255 | .navbar-default .navbar-nav li a{ 256 | color: white; 257 | } 258 | 259 | .navbar-default .navbar-nav li a:hover{ 260 | background-color: #333333; 261 | } 262 | -------------------------------------------------------------------------------- /public/js/hugo-academic.js: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * Academic: the personal website framework for Hugo. 3 | * https://github.com/gcushen/hugo-academic 4 | **************************************************/ 5 | 6 | (function($){ 7 | 8 | /* --------------------------------------------------------------------------- 9 | * Responsive scrolling for URL hashes. 10 | * --------------------------------------------------------------------------- */ 11 | 12 | // Dynamically get responsive navigation bar offset. 13 | let $navbar = $('.navbar-header'); 14 | let navbar_offset = $navbar.innerHeight(); 15 | 16 | /** 17 | * Responsive hash scrolling. 18 | * Check for a URL hash as an anchor. 19 | * If it exists on current page, scroll to it responsively. 20 | * If `target` argument omitted (e.g. after event), assume it's the window's hash. 21 | */ 22 | function scrollToAnchor(target) { 23 | // If `target` is undefined or HashChangeEvent object, set it to window's hash. 24 | target = (typeof target === 'undefined' || typeof target === 'object') ? window.location.hash : target; 25 | // Escape colons from IDs, such as those found in Markdown footnote links. 26 | target = target.replace(/:/g, '\\:'); 27 | 28 | // If target element exists, scroll to it taking into account fixed navigation bar offset. 29 | if($(target).length) { 30 | $('body').addClass('scrolling'); 31 | $('html, body').animate({ 32 | scrollTop: $(target).offset().top - navbar_offset 33 | }, 600, function () { 34 | $('body').removeClass('scrolling'); 35 | }); 36 | } 37 | } 38 | 39 | // Make Scrollspy responsive. 40 | function fixScrollspy() { 41 | let $body = $('body'); 42 | let data = $body.data('bs.scrollspy'); 43 | if (data) { 44 | data.options.offset = navbar_offset; 45 | $body.data('bs.scrollspy', data); 46 | $body.scrollspy('refresh'); 47 | } 48 | } 49 | 50 | // Check for hash change event and fix responsive offset for hash links (e.g. Markdown footnotes). 51 | window.addEventListener("hashchange", scrollToAnchor); 52 | 53 | /* --------------------------------------------------------------------------- 54 | * Add smooth scrolling to all links inside the main navbar. 55 | * --------------------------------------------------------------------------- */ 56 | 57 | $('#navbar-main li.nav-item a').on('click', function(event) { 58 | // Store requested URL hash. 59 | let hash = this.hash; 60 | 61 | // If we are on the homepage and the navigation bar link is to a homepage section. 62 | if ( hash && $(hash).length && ($("#homepage").length > 0)) { 63 | // Prevent default click behavior. 64 | event.preventDefault(); 65 | 66 | // Use jQuery's animate() method for smooth page scrolling. 67 | // The numerical parameter specifies the time (ms) taken to scroll to the specified hash. 68 | $('html, body').animate({ 69 | scrollTop: $(hash).offset().top - navbar_offset 70 | }, 800); 71 | } 72 | }); 73 | 74 | /* --------------------------------------------------------------------------- 75 | * Smooth scrolling for Back To Top link. 76 | * --------------------------------------------------------------------------- */ 77 | 78 | $('#back_to_top').on('click', function(event) { 79 | event.preventDefault(); 80 | $('html, body').animate({ 81 | 'scrollTop': 0 82 | }, 800, function() { 83 | window.location.hash = ""; 84 | }); 85 | }); 86 | 87 | /* --------------------------------------------------------------------------- 88 | * Hide mobile collapsable menu on clicking a link. 89 | * --------------------------------------------------------------------------- */ 90 | 91 | $(document).on('click', '.navbar-collapse.in', function(e) { 92 | //get the element that was clicked, even if the element that is inside the element is e.target 93 | let targetElement = $(e.target).is('a') ? $(e.target) : $(e.target).parent(); 94 | 95 | if (targetElement.is('a') && targetElement.attr('class') != 'dropdown-toggle') { 96 | $(this).collapse('hide'); 97 | } 98 | }); 99 | 100 | /* --------------------------------------------------------------------------- 101 | * Filter projects. 102 | * --------------------------------------------------------------------------- */ 103 | 104 | let $grid_projects = $('#container-projects'); 105 | $grid_projects.imagesLoaded(function () { 106 | // Initialize Isotope after all images have loaded. 107 | $grid_projects.isotope({ 108 | itemSelector: '.isotope-item', 109 | layoutMode: 'masonry' 110 | }); 111 | 112 | // Filter items when filter link is clicked. 113 | $('#filters a').click(function () { 114 | let selector = $(this).attr('data-filter'); 115 | $grid_projects.isotope({filter: selector}); 116 | $(this).removeClass('active').addClass('active').siblings().removeClass('active all'); 117 | return false; 118 | }); 119 | }); 120 | 121 | /* --------------------------------------------------------------------------- 122 | * Filter publications. 123 | * --------------------------------------------------------------------------- */ 124 | 125 | let $grid_pubs = $('#container-publications'); 126 | $grid_pubs.isotope({ 127 | itemSelector: '.isotope-item', 128 | percentPosition: true, 129 | masonry: { 130 | // Use Bootstrap compatible grid layout. 131 | columnWidth: '.grid-sizer' 132 | } 133 | }); 134 | 135 | // Bind publication filter on dropdown change. 136 | $('.pub-filters-select').on('change', function() { 137 | // Get filter value from option value. 138 | let filterValue = this.value; 139 | // Apply filter to Isotope. 140 | $grid_pubs.isotope({ filter: filterValue }); 141 | 142 | // Set hash URL to current filter. 143 | let url = $(this).val(); 144 | if (url.substr(0, 9) == '.pubtype-') { 145 | window.location.hash = url.substr(9); 146 | } else { 147 | window.location.hash = ''; 148 | } 149 | }); 150 | 151 | // Filter publications according to hash in URL. 152 | function filter_publications() { 153 | let urlHash = window.location.hash.replace('#',''); 154 | let filterValue = '*'; 155 | 156 | // Check if hash is numeric. 157 | if (urlHash != '' && !isNaN(urlHash)) { 158 | filterValue = '.pubtype-' + urlHash; 159 | } 160 | 161 | $('.pub-filters-select').val(filterValue); 162 | $grid_pubs.isotope({ filter: filterValue }); 163 | } 164 | 165 | /* --------------------------------------------------------------------------- 166 | * On window load. 167 | * --------------------------------------------------------------------------- */ 168 | 169 | $(window).on('load', function() { 170 | if (window.location.hash) { 171 | // When accessing homepage from another page and `#top` hash is set, show top of page (no hash). 172 | if (window.location.hash == "#top") { 173 | window.location.hash = "" 174 | } else { 175 | // If URL contains a hash, scroll to target ID taking into account responsive offset. 176 | scrollToAnchor(); 177 | } 178 | } 179 | 180 | // Initialize Scrollspy. 181 | let $body = $('body'); 182 | $body.scrollspy({offset: navbar_offset }); 183 | 184 | // Call `fixScrollspy` when window is resized. 185 | let resizeTimer; 186 | $(window).resize(function() { 187 | clearTimeout(resizeTimer); 188 | resizeTimer = setTimeout(fixScrollspy, 200); 189 | }); 190 | 191 | // Enable publication filter for publication index page. 192 | if ($('.pub-filters-select')) { 193 | filter_publications(); 194 | // Useful for changing hash manually (e.g. in development): 195 | // window.addEventListener('hashchange', filter_publications, false); 196 | } 197 | 198 | }); 199 | 200 | })(jQuery); 201 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | # baseurl = "https://physics.ucr.edu/" # End your URL with a `/` trailing slash. 2 | baseurl = "http://physics.ucr.edu/~flip/" # End your URL with a `/` trailing slash. 3 | title = "Flip Tanedo @ UCR" 4 | copyright = "© 2017 Flip Tanedo" 5 | theme = "academic" 6 | enableEmoji = true 7 | footnotereturnlinkcontents = "^" 8 | 9 | # Enable comments by entering your Disqus shortname 10 | disqusShortname = "" 11 | 12 | # Enable analytics by entering your Google Analytics tracking ID 13 | googleAnalytics = "" 14 | 15 | # Default language to use (if you setup multilingual support) 16 | defaultContentLanguage = "en" 17 | defaultContentLanguageInSubdir = false 18 | 19 | [blackfriday] 20 | hrefTargetBlank = true 21 | 22 | [params] 23 | name = "Flip Tanedo" 24 | role = "Assistant Professor" 25 | organization = "UC Riverside Particle Theory" 26 | organization_url = "http://theory.ucr.edu" 27 | gravatar = false 28 | avatar = "Profile/Flip600_sq.jpg" # (in `static/img/` folder) 29 | # email = "flip.tanedo@ucr.edu" # Use crypted e-mail fields below 30 | email1 = "flip.tanedo" 31 | email2 = "ucr" 32 | email3 = "edu" 33 | address = "Physics Building, Room 3054, University of California, 900 University Ave., Riverside, CA 92521, USA" 34 | office_hours = "Office Hours: Monday 1:30 to 2:30pm" 35 | # phone = "(951) 827-6168" 36 | # skype = "flip.tanedo" 37 | telegram = "" 38 | 39 | # FLIP additional 40 | watermark = "background/Bundle3.jpg" # relative to `static/img/` folder) 41 | footmark = "background/feynmanfooter.png" 42 | numitems = "3" # number of recent items to show, e.g. recent and upcoming classes 43 | arXivID = "tanedo_p_1" 44 | # END FLIP ADDITION 45 | 46 | # Enable Keybase in Contact section by entering your keybase.io username. 47 | keybase = "" 48 | 49 | # Date format (refer to Go's date format: http://flippinggodateformat.com ) 50 | # Examples: "Mon, Jan 2, 2006" or "2006-01-02" 51 | date_format = "Mon, Jan 2, 2006" 52 | 53 | # Enable global LaTeX math rendering? 54 | # If false, you can enable it locally on a per page basis. 55 | math = true 56 | 57 | # Highlight.js options 58 | # highlight 59 | # Enable global source code highlighting? If false, you can 60 | # override it for a particular page in that page's preamble. 61 | # 62 | # Example: highlight = true 63 | # 64 | # highlight_languages 65 | # Add support for highlighting additional languages. Support for 66 | # languages mentioned here will be included in all pages. You 67 | # can also set this variable for a particular page in that 68 | # page's preamble. 69 | # 70 | # Example: highlight_languages = ["go", "lisp", "ocaml"] 71 | # 72 | # highlight_style 73 | # Choose a different CSS style for highlighting source 74 | # code. Setting this option in a page's preamble has no 75 | # effect. 76 | # 77 | # Example: highlight_style = "github-gist" 78 | # 79 | # highlight_version 80 | # Choose the version of highlight.js you want. Setting this 81 | # option in a page's preamble has no effect. 82 | # 83 | # Example: highlight_version = "9.9.0" 84 | # 85 | # For the list of supported languages, styles, and versions, see: 86 | # https://cdnjs.com/libraries/highlight.js/ 87 | # 88 | # For more info on the highlighting options, see: 89 | # https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options 90 | highlight = true 91 | highlight_languages = [] 92 | # highlight_style = "github" 93 | # highlight_version = "9.9.0" 94 | 95 | # Enable native social sharing buttons? 96 | sharing = true 97 | 98 | # Link custom CSS and JS assets 99 | # (relative to /static/css and /static/js respectively) 100 | custom_css = ["green.css", "flip2017.css", "cryptedmail.css"] 101 | custom_js = [] 102 | 103 | # Publication types. 104 | # Used to categorize publications. 105 | # The index of the publication type in the list is used as its unique numerical identifier. 106 | # The numeric ID is used in a publication's frontmatter to categorize it. 107 | # The language can be edited below. 108 | # For multi-lingual sites, copy this block to each language section at the end of this file. 109 | publication_types = [ 110 | 'Uncategorized', # 0 111 | 'Conference proceedings', # 1 112 | 'Journal', # 2 113 | 'Work in progress', # 3 114 | 'Technical report', # 4 115 | 'Book', # 5 116 | 'Book chapter' # 6 117 | ] 118 | 119 | # Social/Academic Networking 120 | # 121 | # Icon pack "fa" includes the following social network icons: 122 | # 123 | # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, 124 | # youtube, instagram, soundcloud 125 | # 126 | # For email icon, use "fa" icon pack, "envelope" icon, and 127 | # "mailto:your@email.com" as the link. 128 | # 129 | # Full list: https://fortawesome.github.io/Font-Awesome/icons/ 130 | # 131 | # Icon pack "ai" includes the following academic network icons: 132 | # 133 | # google-scholar, arxiv, orcid, researchgate, mendeley 134 | # 135 | # Full list: https://jpswalsh.github.io/academicons/ 136 | 137 | # [[params.social]] 138 | # icon = "envelope" 139 | # icon_pack = "fa" 140 | # link = "mailto:flip.tanedo@ucr.edu" 141 | 142 | [[params.social]] 143 | icon = "inspire" 144 | icon_pack = "ai" 145 | link = "http://inspirehep.net/author/profile/P.Tanedo.1" 146 | cv = true 147 | 148 | [[params.social]] 149 | icon = "google-scholar" 150 | icon_pack = "ai" 151 | link = "https://scholar.google.com/citations?hl=en&user=BQuJtTIAAAAJ&view_op=list_works&sortby=pubdate" 152 | cv = true 153 | 154 | [[params.social]] 155 | icon = "orcid" 156 | icon_pack = "ai" 157 | link = "http://orcid.org/0000-0003-4642-2199" 158 | cv = true 159 | 160 | 161 | [[params.social]] 162 | icon = "github" 163 | icon_pack = "fa" 164 | link = "//github.com/fliptanedo" 165 | cv = true 166 | 167 | 168 | [[params.social]] 169 | icon = "twitter" 170 | icon_pack = "fa" 171 | link = "//twitter.com/FlipTanedo" 172 | cv = false 173 | 174 | [[params.social]] 175 | icon = "arxiv" 176 | icon_pack = "ai" 177 | link = "https://arxiv.org/find/hep-ph/1/au:+Tanedo_P/0/1/0/all/0/1" 178 | cv = true 179 | 180 | [[params.social]] 181 | icon = "publons" 182 | icon_pack = "ai" 183 | link = "https://publons.com/author/637273/philip-tanedo#profile" 184 | cv = true 185 | 186 | [[params.social]] 187 | icon = "slideshare" 188 | icon_pack = "fa" 189 | link = "https://www.slideshare.net/fliptanedo" 190 | cv = false 191 | 192 | [[params.social]] 193 | icon = "tree" 194 | icon_pack = "fa" 195 | link = "https://academictree.org/physics/tree.php?pid=715850" 196 | cv = false 197 | 198 | 199 | # Navigation Links 200 | # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the 201 | # desired widget in your `content/home/` folder. 202 | # The weight parameter defines the order that the links will appear in. 203 | 204 | [[menu.main]] 205 | name = "Home" 206 | url = "#aboutme" 207 | weight = 1 208 | 209 | [[menu.main]] 210 | name = "CV" 211 | url = "#CV" 212 | weight = 2 213 | 214 | [[menu.main]] 215 | name = "Research" 216 | url = "#research" 217 | weight = 3 218 | 219 | [[menu.main]] 220 | name = "Teaching" 221 | url = "#teaching" 222 | weight = 4 223 | 224 | [[menu.main]] 225 | name = "Activities" 226 | url = "#outreach" 227 | weight = 5 228 | 229 | [[menu.main]] 230 | name = "Misc." 231 | url = "#misc" 232 | weight = 6 233 | 234 | [[menu.main]] 235 | name = "Contact" 236 | url = "#contact" 237 | weight = 7 238 | 239 | # Taxonomies. 240 | [taxonomies] 241 | tag = "tags" 242 | category = "categories" 243 | publication_type = "publication_types" 244 | 245 | # Languages 246 | # Create a [languages.X] block for each language you want, where X is the language ID. 247 | 248 | # Configure the English version of the website. 249 | [languages.en] 250 | languageCode = "en-us" 251 | -------------------------------------------------------------------------------- /content/post/managing-content.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2016-04-20T11:00:00" 3 | draft = false 4 | tags = ["academic", "hugo"] 5 | title = "Managing content" 6 | math = false 7 | +++ 8 | 9 | This is a brief guide to managing content with the Academic framework. Content can include publications, projects, talks, and news/blog articles. After you have read this guide about creating and managing content, you may also be interested to learn about [writing content with Markdown, LaTeX, and Shortcodes]({{< ref "post/writing-markdown-latex.md" >}}). 10 | 11 | To enable LaTeX math rendering for a page, you should include `math = true` in the page's `+++` preamble, as demonstrated in the included example site. Otherwise, to enable math on the homepage or for all pages, you must globally set `math = true` in `config.toml`. 12 | 13 | To disable source code highlighting by default for all pages, set `highlight = false` in `config.toml`. You can then enable source code highlighting only on pages that need it by setting `highlight = true` in that page's preamble. See the [code-highlighting docs]({{< ref "post/writing-markdown-latex.md#code-highlighting" >}}) for more details. 14 | 15 | To display a featured image in content page headers, the parameters below can be inserted towards the end of a page's `+++` preamble. It is assumed that the image is located in your `static/img/` folder, so the full path in the example below will be `static/img/headers/getting-started.png`. The `caption` parameter can be used to write an image caption or credit. 16 | 17 | ```toml 18 | [header] 19 | image = "headers/getting-started.png" 20 | caption = "Image credit: [**Academic**](https://github.com/gcushen/hugo-academic/)" 21 | 22 | ``` 23 | 24 | {{% alert note %}} 25 | If you wish to prevent a featured image automatically being used for a post's thumbnail on the homepage, the `preview = false` parameter can be added to `[header]`. 26 | {{% /alert %}} 27 | 28 | ## Create a publication 29 | 30 | To create a new publication: 31 | 32 | hugo new publication/my-paper-name.md 33 | 34 | Then edit the default variables at the top of `content/publication/my-paper-name.md` to include the details of your publication. The `url_` variables are used to generate links associated with your publication, such as for viewing PDFs of papers. Here is an example: 35 | 36 | ``` 37 | +++ 38 | abstract = "An abstract..." 39 | authors = ["First author's name", "Second author's name"] 40 | date = "2013-07-01" 41 | image = "" 42 | image_preview = "" 43 | math = false 44 | publication = "The publishing part of the citation goes here. You may use *Markdown* for italics etc." 45 | title = "A publication title, such as title of a paper" 46 | url_code = "" 47 | url_dataset = "" 48 | url_pdf = "pdf/my-paper-name.pdf" 49 | url_project = "" 50 | url_slides = "" 51 | url_video = "" 52 | +++ 53 | 54 | Further details on your publication can be written here using *Markdown* for formatting. This text will be displayed on the Publication Detail page. 55 | ``` 56 | 57 | The `url_` links can either point to local or web content. Associated local publication content, such as PDFs, may be copied to a `static/pdf/` folder and referenced like `url_pdf = "pdf/my-paper-name.pdf"`. 58 | 59 | You can also associate custom link buttons with the publication by adding the following block(s) within the variable preamble above, which is denoted by `+++`: 60 | 61 | ``` 62 | [[url_custom]] 63 | name = "Custom Link" 64 | url = "http://www.example.org" 65 | ``` 66 | 67 | If you enabled `detailed_list` for publications in `config.toml`, then there are a few more optional variables that you can include in the publication page preamble. You may use `abstract_short = "friendly summary of abstract"` and `publication_short = "abbreviated publication details"` to display a friendly summary of the abstract and abbreviate the publication details, respectively. Furthermore, there is the option to display a different image on the homepage to the publication detail page by setting `image_preview = "my-image.jpg"`. This can be useful if you wish to scale down the image for the homepage or simply if you just wish to show a different image for the preview. 68 | 69 | {{% alert warning %}} 70 | Any double quotes (`"`) or backslashes (e.g. LaTeX `\times`) occurring within the value of any frontmatter parameter (such as the *abstract*) should be escaped with a backslash (`\`). For example, the symbol `"` and LaTeX text `\times` become `\"` and `\\times`, respectively. Refer to the [TOML documentation](https://github.com/toml-lang/toml#user-content-string) for more info. 71 | {{% /alert %}} 72 | 73 | ## Post an article 74 | 75 | To create a blog/news article: 76 | 77 | hugo new post/my-article-name.md 78 | 79 | Then edit the newly created file `content/post/my-article-name.md` with your full title and content. 80 | 81 | Hugo will automatically generate summaries of posts that appear on the homepage. If you are dissatisfied with an automated summary, you can either limit the summary length by appropriately placing <!--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 | 2 | Flip Tanedo @ UCR 53 | 54 | 55 | 56 | 57 | 58 |
59 | 60 | 61 |
173 | 174 | 175 | 176 | 177 | 178 |
179 | 180 |

2

181 | 182 | 183 | 184 | 185 | 186 | 192 | 193 | 194 | 195 | 196 | 197 |
198 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | -------------------------------------------------------------------------------- /public/publication_types/1/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 | 53 | 56 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 1 | Flip Tanedo @ UCR 75 | 76 | 77 | 78 | 79 | 80 |
81 | 82 | 83 | 197 |
198 | 199 | 200 | 201 | 202 | 203 |
204 | 205 |

1

206 | 207 | 208 | 209 | 210 | 211 |
212 |

Dark Matter Capture

213 |
214 | 215 |
216 |
217 | 218 | 219 | 220 | 221 | 222 |
223 |
224 |
225 |
226 |
227 | 246 |
247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | -------------------------------------------------------------------------------- /public/publication_types/3/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 | 53 | 56 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 3 | Flip Tanedo @ UCR 75 | 76 | 77 | 78 | 79 | 80 |
81 | 82 | 83 | 197 |
198 | 199 | 200 | 201 | 202 | 203 |
204 | 205 |

3

206 | 207 | 208 | 209 | 210 | 211 |
212 |

New Physics in Nuclear Transitions

213 |
214 | 215 |
216 |
217 | 218 | 219 | 220 | 221 | 222 |
223 |
224 |
225 |
226 |
227 | 246 |
247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | -------------------------------------------------------------------------------- /public/tags/jekyll/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 | 53 | 56 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | Jekyll | Flip Tanedo @ UCR 75 | 76 | 77 | 78 | 79 | 80 |
81 | 82 | 83 | 197 |
198 | 199 | 200 | 201 | 202 | 203 |
204 | 205 |

Jekyll

206 | 207 | 208 | 209 | 210 | 211 |
212 |

Migrate from Jekyll to Hugo

213 |
214 | 215 | Learn how to migrate an existing website from Jekyll to Hugo. 216 | 217 |
218 |
219 | 220 | 221 | 222 | 223 | 224 |
225 |
226 |
227 |
228 |
229 | 248 |
249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | -------------------------------------------------------------------------------- /public/arxiv/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 | 53 | 56 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | arXiv Papers | Flip Tanedo @ UCR 75 | 76 | 77 | 78 | 79 | 80 |
81 | 82 | 83 | 197 |
198 | 199 | 200 |
201 | 202 | 203 | 204 | 205 |
206 |

arXiv Papers

207 | 208 | 209 |
210 |

A listing of publications from the arXiv.

211 | 212 |
213 | 214 | 215 |
216 |
217 | 218 |
219 | 220 |
221 | 228 | 229 |
230 | 231 |
232 | 233 | 234 |
235 | 236 |
237 |
238 |
239 |
240 | 259 |
260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | -------------------------------------------------------------------------------- /public/talk/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 | 48 | 51 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Recent & Upcoming Talks | Flip Tanedo @ UCR 70 | 71 | 72 | 73 | 74 | 75 |
76 | 77 | 78 | 192 |
193 | 194 | 195 | 196 | 197 | 198 |
199 |
200 |
201 |

Recent & Upcoming Talks

202 | 203 | 204 | 205 | 206 |
207 |
208 |

2017

209 |
210 |
211 |
    212 | 213 | 214 |
  • 215 | 217 | Example Talk 218 |

    219 | 220 | 221 | 222 | 223 | Details 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 |

    232 |
  • 233 | 234 | 235 |
236 |
237 |
238 | 239 | 240 |
241 |
242 | 243 |
244 |
245 |
246 |
247 |
248 | 267 |
268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | -------------------------------------------------------------------------------- /public/talk/example-talk/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 | 53 | 56 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | Example Talk | Flip Tanedo @ UCR 75 | 76 | 77 | 78 | 79 | 80 |
81 | 82 | 83 | 197 |
198 | 199 | 200 |
201 | 202 | 203 |
204 | 205 | My caption 😄 206 |
207 | 208 | 209 | 210 |
211 |

Example Talk

212 | 213 | 214 |
215 |

Embed your slides or video here using shortcodes. Further details can easily be added using Markdown and $\rm \LaTeX$ math code.

216 | 217 |
218 |
219 | 220 |
221 | 222 |
223 | 230 | 231 |
232 | 233 |
234 | 235 | 236 |
237 | 238 |
239 |
240 |
241 |
242 | 261 |
262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | --------------------------------------------------------------------------------