├── data ├── fonts │ └── .gitkeep ├── themes │ └── .gitkeep └── page_sharer.toml ├── assets └── media │ ├── albums │ ├── .gitkeep │ └── demo │ │ ├── dan-gold-4_jhDO54BYg-unsplash-f.jpg │ │ ├── chris-montgomery-smgTvepind4-unsplash.jpg │ │ ├── fotografierende-333oj7zFsdg-unsplash.jpg │ │ ├── joseph-gonzalez-zcUgjyqEwe8-unsplash.jpg │ │ ├── matthew-osborn-wMRIcT86SWU-unsplash-l.jpg │ │ ├── priscilla-du-preez-K8XYGbw4Ahg-unsplash.jpg │ │ └── glenn-carstens-peters-npxXWgQ33ZQ-unsplash.jpg │ ├── icon.png │ ├── hero-academic.png │ └── icons │ └── brands │ ├── org-gc.svg │ └── org-x.svg ├── .github ├── FUNDING.yml └── workflows │ └── updater-wip.yml ├── preview.png ├── images ├── tn.png └── screenshot.png ├── content ├── post │ ├── writing-technical-content │ │ ├── results.csv │ │ ├── featured.jpg │ │ ├── line-chart.json │ │ └── index.md │ ├── jupyter │ │ ├── featured.png │ │ ├── index_1_0.png │ │ ├── index.md │ │ └── index.ipynb │ ├── getting-started │ │ ├── featured.jpg │ │ └── index.md │ └── _index.md ├── authors │ ├── admin │ │ ├── avatar.jpg │ │ └── _index.md │ └── _index.md ├── event │ ├── example │ │ ├── featured.jpg │ │ └── index.md │ └── _index.md ├── project │ ├── example │ │ ├── featured.jpg │ │ └── index.md │ └── external-project │ │ ├── featured.jpg │ │ └── index.md ├── publication │ ├── preprint │ │ ├── featured.jpg │ │ └── index.md │ ├── conference-paper │ │ ├── featured.jpg │ │ ├── conference-paper.pdf │ │ ├── cite.bib │ │ └── index.md │ ├── journal-article │ │ ├── featured.jpg │ │ ├── cite.bib │ │ └── index.md │ └── _index.md ├── admin │ └── index.md ├── terms.md ├── privacy.md ├── slides │ └── example │ │ └── index.md └── _index.md ├── static └── uploads │ └── resume.pdf ├── .gitignore ├── academic.Rproj ├── .editorconfig ├── go.mod ├── netlify.toml ├── config └── _default │ ├── languages.yaml │ ├── menus.yaml │ ├── config.yaml │ └── params.yaml ├── LICENSE.md ├── theme.toml └── README.md /data/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/media/albums/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: gcushen 2 | custom: https://wowchemy.com/sponsor/ 3 | -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/preview.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/images/tn.png -------------------------------------------------------------------------------- /content/post/writing-technical-content/results.csv: -------------------------------------------------------------------------------- 1 | customer_id, score 2 | 1,0 3 | 2,0.5 4 | 3,1 5 | -------------------------------------------------------------------------------- /assets/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/icon.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/images/screenshot.png -------------------------------------------------------------------------------- /static/uploads/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/static/uploads/resume.pdf -------------------------------------------------------------------------------- /assets/media/hero-academic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/hero-academic.png -------------------------------------------------------------------------------- /content/authors/admin/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/authors/admin/avatar.jpg -------------------------------------------------------------------------------- /content/event/example/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/event/example/featured.jpg -------------------------------------------------------------------------------- /content/post/jupyter/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/post/jupyter/featured.png -------------------------------------------------------------------------------- /content/post/jupyter/index_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/post/jupyter/index_1_0.png -------------------------------------------------------------------------------- /content/project/example/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/project/example/featured.jpg -------------------------------------------------------------------------------- /content/post/getting-started/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/post/getting-started/featured.jpg -------------------------------------------------------------------------------- /content/publication/preprint/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/publication/preprint/featured.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDEs 2 | .idea/ 3 | 4 | # Hugo 5 | resources/ 6 | public/ 7 | jsconfig.json 8 | node_modules/ 9 | go.sum 10 | .hugo_build.lock 11 | -------------------------------------------------------------------------------- /content/admin/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Generate Wowchemy CMS 3 | type: wowchemycms 4 | private: true 5 | outputs: 6 | - wowchemycms_config 7 | - HTML 8 | --- 9 | -------------------------------------------------------------------------------- /content/project/external-project/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/project/external-project/featured.jpg -------------------------------------------------------------------------------- /content/publication/conference-paper/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/publication/conference-paper/featured.jpg -------------------------------------------------------------------------------- /content/publication/journal-article/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/publication/journal-article/featured.jpg -------------------------------------------------------------------------------- /content/post/writing-technical-content/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/post/writing-technical-content/featured.jpg -------------------------------------------------------------------------------- /content/publication/conference-paper/conference-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/content/publication/conference-paper/conference-paper.pdf -------------------------------------------------------------------------------- /assets/media/albums/demo/dan-gold-4_jhDO54BYg-unsplash-f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/dan-gold-4_jhDO54BYg-unsplash-f.jpg -------------------------------------------------------------------------------- /assets/media/albums/demo/chris-montgomery-smgTvepind4-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/chris-montgomery-smgTvepind4-unsplash.jpg -------------------------------------------------------------------------------- /assets/media/albums/demo/fotografierende-333oj7zFsdg-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/fotografierende-333oj7zFsdg-unsplash.jpg -------------------------------------------------------------------------------- /assets/media/albums/demo/joseph-gonzalez-zcUgjyqEwe8-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/joseph-gonzalez-zcUgjyqEwe8-unsplash.jpg -------------------------------------------------------------------------------- /assets/media/albums/demo/matthew-osborn-wMRIcT86SWU-unsplash-l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/matthew-osborn-wMRIcT86SWU-unsplash-l.jpg -------------------------------------------------------------------------------- /assets/media/albums/demo/priscilla-du-preez-K8XYGbw4Ahg-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/priscilla-du-preez-K8XYGbw4Ahg-unsplash.jpg -------------------------------------------------------------------------------- /assets/media/albums/demo/glenn-carstens-peters-npxXWgQ33ZQ-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorBaratta/starter-hugo-academic/main/assets/media/albums/demo/glenn-carstens-peters-npxXWgQ33ZQ-unsplash.jpg -------------------------------------------------------------------------------- /content/publication/journal-article/cite.bib: -------------------------------------------------------------------------------- 1 | @article{example2, 2 | title = {An example journal article}, 3 | author={Bighetti, Nelson and Ford, Robert}, 4 | journal = {Journal of Source Themes}, 5 | year = 2015, 6 | volume = 1, 7 | number = 1 8 | } 9 | -------------------------------------------------------------------------------- /content/authors/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | cms_exclude: true 3 | 4 | # To publish author profile pages, remove all of the `_build` and `cascade` settings below. 5 | _build: 6 | render: never 7 | cascade: 8 | _build: 9 | render: never 10 | list: always 11 | --- 12 | -------------------------------------------------------------------------------- /content/publication/conference-paper/cite.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{example1, 2 | title={An example conference paper}, 3 | author={Bighetti, Nelson and Ford, Robert}, 4 | booktitle={Source Themes Conference}, 5 | pages={1--6}, 6 | year={2013}, 7 | organization={IEEE} 8 | } 9 | -------------------------------------------------------------------------------- /content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Posts 3 | cms_exclude: true 4 | 5 | # View. 6 | # 1 = List 7 | # 2 = Compact 8 | # 3 = Card 9 | view: 2 10 | 11 | # Optional header image (relative to `static/media/` folder). 12 | header: 13 | caption: '' 14 | image: '' 15 | --- 16 | -------------------------------------------------------------------------------- /content/event/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Recent & Upcoming Talks 3 | cms_exclude: true 4 | 5 | # View. 6 | # 1 = List 7 | # 2 = Compact 8 | # 3 = Card 9 | view: 2 10 | 11 | # Optional header image (relative to `static/media/` folder). 12 | header: 13 | caption: '' 14 | image: '' 15 | --- 16 | -------------------------------------------------------------------------------- /content/publication/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Publications 3 | cms_exclude: true 4 | 5 | # View. 6 | # 1 = List 7 | # 2 = Compact 8 | # 3 = Card 9 | # 4 = Citation 10 | view: 4 11 | 12 | # Optional header image (relative to `static/media/` folder). 13 | header: 14 | caption: '' 15 | image: '' 16 | --- 17 | -------------------------------------------------------------------------------- /academic.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | StripTrailingWhitespace: Yes 17 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.toml] 14 | max_line_length = 100 15 | 16 | [*.md] 17 | trim_trailing_whitespace = false 18 | 19 | [layouts/shortcodes/*.html] 20 | insert_final_newline = false 21 | -------------------------------------------------------------------------------- /content/terms.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Terms 3 | date: '2018-06-28T00:00:00+01:00' 4 | draft: true 5 | share: false 6 | commentable: false 7 | editable: false 8 | 9 | # Optional header image (relative to `static/media/` folder). 10 | header: 11 | caption: '' 12 | image: '' 13 | --- 14 | 15 | Add your terms here and set `draft: false` to publish it. Otherwise, delete this file if you don't need it. 16 | -------------------------------------------------------------------------------- /content/privacy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Privacy Policy 3 | date: '2018-06-28T00:00:00+01:00' 4 | draft: true 5 | share: false 6 | commentable: false 7 | editable: false 8 | 9 | # Optional header image (relative to `static/media/` folder). 10 | header: 11 | caption: '' 12 | image: '' 13 | --- 14 | 15 | Add your privacy policy here and set `draft: false` to publish it. Otherwise, delete this file if you don't need it. 16 | -------------------------------------------------------------------------------- /.github/workflows/updater-wip.yml: -------------------------------------------------------------------------------- 1 | name: Updater (WIP) 2 | 3 | on: 4 | schedule: 5 | - cron: 0 0 * * 0 6 | 7 | jobs: 8 | update: 9 | if: github.repository_owner == 'wowchemy' 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: wowchemy/gh-action-updater@v1 13 | with: 14 | feed-url: https://wowchemy.com/blog/index.xml 15 | readme-section: news 16 | branch: main 17 | -------------------------------------------------------------------------------- /content/project/external-project/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: External Project 3 | summary: An example of linking directly to an external project website using `external_link`. 4 | tags: 5 | - Demo 6 | date: "2016-04-27T00:00:00Z" 7 | 8 | # Optional external URL for project (replaces project detail page). 9 | external_link: https://example.org 10 | 11 | image: 12 | caption: Photo by Toa Heftiba on Unsplash 13 | focal_point: Smart 14 | --- 15 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/wowchemy/starter-hugo-academic 2 | 3 | go 1.15 4 | 5 | require ( 6 | github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.0.0 // indirect 7 | github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms v1.0.0 // indirect 8 | github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-reveal v1.0.0 // indirect 9 | github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.7.1-0.20221127215619-58b270a3e103 10 | ) 11 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | command = "hugo --gc --minify -b $URL" 3 | publish = "public" 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.108.0" 7 | HUGO_ENABLEGITINFO = "true" 8 | 9 | [context.production.environment] 10 | HUGO_ENV = "production" 11 | 12 | [context.deploy-preview] 13 | command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL" 14 | 15 | [context.branch-deploy] 16 | command = "hugo --gc --minify -b $DEPLOY_PRIME_URL" 17 | 18 | [[plugins]] 19 | package = "netlify-plugin-hugo-cache-resources" 20 | [plugins.inputs] 21 | debug = true 22 | -------------------------------------------------------------------------------- /config/_default/languages.yaml: -------------------------------------------------------------------------------- 1 | # Languages 2 | # Create a section for each of your site's languages. 3 | # Documentation: https://wowchemy.com/docs/guide/language/ 4 | 5 | # Default language 6 | en: 7 | languageCode: en-us 8 | # Uncomment for multi-lingual sites, and move English content into `en` sub-folder. 9 | #contentDir: content/en 10 | 11 | # Uncomment the lines below to configure your website in a second language. 12 | #zh: 13 | # languageCode: zh-Hans 14 | # contentDir: content/zh 15 | # title: Chinese website title... 16 | # params: 17 | # description: Site description in Chinese... 18 | # menu: 19 | # main: 20 | # - name: 传 21 | # url: '#about' 22 | # weight: 1 23 | -------------------------------------------------------------------------------- /config/_default/menus.yaml: -------------------------------------------------------------------------------- 1 | # Navigation Links 2 | # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the 3 | # desired widget in your `content/home/` folder. 4 | # The weight parameter defines the order that the links will appear in. 5 | 6 | main: 7 | - name: Home 8 | url: '#about' 9 | weight: 10 10 | - name: Posts 11 | url: '#posts' 12 | weight: 20 13 | - name: Projects 14 | url: '#projects' 15 | weight: 30 16 | - name: Talks 17 | url: '#talks' 18 | weight: 40 19 | - name: Publications 20 | url: '#featured' 21 | weight: 50 22 | - name: Contact 23 | url: '#contact' 24 | weight: 60 25 | 26 | # Link to a PDF of your resume/CV from the menu. 27 | # To enable, copy your resume/CV to `static/uploads/resume.pdf` and uncomment the lines below. 28 | # - name: CV 29 | # url: uploads/resume.pdf 30 | # weight: 70 31 | -------------------------------------------------------------------------------- /assets/media/icons/brands/org-gc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | background 5 | 6 | 7 | 8 | 9 | 10 | 11 | Layer 1 12 | 13 | GC 14 | 15 | -------------------------------------------------------------------------------- /assets/media/icons/brands/org-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | background 5 | 6 | 7 | 8 | 9 | 10 | 11 | Layer 1 12 | 13 | X 14 | 15 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016-present George Cushen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- 1 | name = "Academic" 2 | license = "MIT" 3 | licenselink = "https://github.com/wowchemy/starter-hugo-academic/blob/master/LICENSE.md" 4 | description = "Use the website builder to easily build your site with 50+ widgets and deploy with one click! Fully customize your site with themes, plugins, and language packs." 5 | homepage = "https://github.com/wowchemy/starter-hugo-academic/" 6 | demosite = "https://wowchemy.com/hugo-themes/" 7 | tags = ["widgets", 8 | "resume", 9 | "portfolio", 10 | "responsive", 11 | "clean", 12 | "personal", 13 | "company", 14 | "blog", 15 | "minimal", 16 | "light", 17 | "dark", 18 | "multilingual", 19 | "documentation", 20 | "landing page", 21 | "projects", 22 | "single page", 23 | "contact form", 24 | "mobile", 25 | "gallery", 26 | "search", 27 | "presentation", 28 | "simple", 29 | "minimalist", 30 | "starter", 31 | "modern", 32 | "one page", 33 | "customizable", 34 | "technical", 35 | "product", 36 | "slide" 37 | ] 38 | features = ["page builder", "widgets", "themes", "search", "research publication system", "filterable portfolio", 39 | "blog", "create courses", "talks", "events", "slides", "gallery", "contact form"] 40 | 41 | [author] 42 | name = "George Cushen" 43 | homepage = "https://georgecushen.com" 44 | 45 | # If porting an existing theme 46 | [original] 47 | name = "" 48 | homepage = "" 49 | repo = "" 50 | -------------------------------------------------------------------------------- /content/post/writing-technical-content/line-chart.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "uid": "babced", 5 | "fill": "tonexty", 6 | "mode": "none", 7 | "name": "Col2", 8 | "type": "scatter", 9 | "x": [ 10 | "2000-01-01", 11 | "2001-01-01", 12 | "2002-01-01", 13 | "2003-01-01", 14 | "2004-01-01", 15 | "2005-01-01", 16 | "2006-01-01", 17 | "2007-01-01", 18 | "2008-01-01", 19 | "2009-01-01", 20 | "2010-01-01", 21 | "2011-01-01", 22 | "2012-01-01", 23 | "2013-01-01", 24 | "2014-01-01", 25 | "2015-01-01", 26 | "2016-01-01" 27 | ], 28 | "y": [ 29 | "17087182", 30 | "29354370", 31 | "38760373", 32 | "40912332", 33 | "51611646", 34 | "64780617", 35 | "85507314", 36 | "121892559", 37 | "172338726", 38 | "238027855", 39 | "206956723", 40 | "346004403", 41 | "697089489", 42 | "672985183", 43 | "968882453", 44 | "863105652", 45 | "1068513050" 46 | ], 47 | "fillcolor": "rgb(224, 102, 102)" 48 | } 49 | ], 50 | "layout": { 51 | "title": "Total Number of Websites", 52 | "width": 800, 53 | "xaxis": { 54 | "type": "date", 55 | "range": [946702800000, 1451624400000], 56 | "title": "Source: Scribblrs
Source: Internet Live Stats", 57 | "showgrid": false, 58 | "autorange": true, 59 | "tickformat": "%Y" 60 | }, 61 | "yaxis": { 62 | "type": "linear", 63 | "range": [0, 1124750578.9473684], 64 | "title": "", 65 | "autorange": true 66 | }, 67 | "height": 500, 68 | "autosize": false 69 | }, 70 | "frames": [] 71 | } 72 | -------------------------------------------------------------------------------- /data/page_sharer.toml: -------------------------------------------------------------------------------- 1 | # Page Sharer 2 | # Documentation: https://wowchemy.com/docs/hugo-tutorials/page-sharer/ 3 | 4 | [[buttons]] 5 | id = "twitter" 6 | url = "https://twitter.com/intent/tweet?url={url}&text={title}" 7 | title = "Twitter" 8 | icon_pack = "fab" 9 | icon = "twitter" 10 | enable = true 11 | 12 | [[buttons]] 13 | id = "facebook" 14 | url = "https://www.facebook.com/sharer.php?u={url}&t={title}" 15 | title = "Facebook" 16 | icon_pack = "fab" 17 | icon = "facebook" 18 | enable = true 19 | 20 | [[buttons]] 21 | id = "email" 22 | url = "mailto:?subject={title}&body={url}" 23 | title = "Email" 24 | icon_pack = "fas" 25 | icon = "envelope" 26 | enable = true 27 | 28 | [[buttons]] 29 | id = "linkedin" 30 | url = "https://www.linkedin.com/shareArticle?url={url}&title={title}" 31 | title = "LinkedIn" 32 | icon_pack = "fab" 33 | icon = "linkedin-in" 34 | enable = true 35 | 36 | [[buttons]] 37 | id = "whatsapp" 38 | url = "whatsapp://send?text={title}%20{url}" 39 | title = "WhatsApp" 40 | icon_pack = "fab" 41 | icon = "whatsapp" 42 | enable = true 43 | 44 | [[buttons]] 45 | id = "weibo" 46 | url = "https://service.weibo.com/share/share.php?url={url}&title={title}" 47 | title = "Weibo" 48 | icon_pack = "fab" 49 | icon = "weibo" 50 | enable = true 51 | 52 | [[buttons]] 53 | id = "reddit" 54 | url = "https://reddit.com/submit?url={url}&title={title}" 55 | title = "Reddit" 56 | icon_pack = "fab" 57 | icon = "reddit-alien" 58 | enable = false 59 | 60 | [[buttons]] 61 | id = "pinterest" 62 | url = "https://pinterest.com/pin/create/link/?url={url}&description={title}" 63 | title = "Pinterest" 64 | icon_pack = "fab" 65 | icon = "pinterest" 66 | enable = false 67 | 68 | [[buttons]] 69 | id = "xing" 70 | url = "https://www.xing.com/spi/shares/new?url={url}&title={title}" 71 | title = "Xing" 72 | icon_pack = "fab" 73 | icon = "xing" 74 | enable = false 75 | 76 | [[buttons]] 77 | id = "tumblr" 78 | url = "https://www.tumblr.com/widgets/share/tool?canonicalUrl={url}&title={title}" 79 | title = "Tumblr" 80 | icon_pack = "fab" 81 | icon = "tumblr" 82 | enable = false 83 | -------------------------------------------------------------------------------- /config/_default/config.yaml: -------------------------------------------------------------------------------- 1 | # Configuration of Hugo 2 | # Guide: https://wowchemy.com/docs/getting-started/ 3 | # Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings 4 | # This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/ 5 | 6 | title: Academic # Website name 7 | baseURL: 'https://example.com/' # Website URL 8 | 9 | ############################ 10 | ## LANGUAGE 11 | ############################ 12 | 13 | defaultContentLanguage: en 14 | hasCJKLanguage: false 15 | defaultContentLanguageInSubdir: false 16 | removePathAccents: true 17 | 18 | ############################ 19 | ## MODULES 20 | ############################ 21 | 22 | module: 23 | imports: 24 | - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms 25 | - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify 26 | - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-reveal 27 | - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 28 | 29 | ############################ 30 | ## ADVANCED 31 | ############################ 32 | 33 | enableGitInfo: false 34 | summaryLength: 30 35 | paginate: 10 36 | enableEmoji: true 37 | enableRobotsTXT: true 38 | footnotereturnlinkcontents: ^ 39 | ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$] 40 | permalinks: 41 | event: '/talk/:slug/' 42 | tags: '/tag/:slug/' 43 | categories: '/category/:slug/' 44 | publication_types: '/publication-type/:slug/' 45 | disableAliases: true 46 | outputs: 47 | home: [HTML, RSS, JSON, WebAppManifest, headers, redirects] 48 | section: [HTML, RSS] 49 | imaging: 50 | resampleFilter: lanczos 51 | quality: 75 52 | anchor: smart 53 | timeout: 600000 54 | taxonomies: 55 | tag: tags 56 | category: categories 57 | publication_type: publication_types 58 | author: authors 59 | markup: 60 | _merge: deep 61 | related: 62 | threshold: 80 63 | includeNewer: true 64 | toLower: true 65 | indices: 66 | - name: tags 67 | weight: 100 68 | - name: categories 69 | weight: 70 70 | security: 71 | _merge: deep 72 | sitemap: 73 | _merge: deep 74 | minify: 75 | _merge: deep 76 | -------------------------------------------------------------------------------- /config/_default/params.yaml: -------------------------------------------------------------------------------- 1 | # SITE SETUP 2 | # Guide: https://wowchemy.com/docs/getting-started/ 3 | # Documentation: https://wowchemy.com/docs/ 4 | # This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/ 5 | 6 | # Appearance 7 | 8 | appearance: 9 | theme_day: minimal 10 | theme_night: minimal 11 | font: minimal 12 | font_size: L 13 | 14 | # SEO 15 | 16 | marketing: 17 | seo: 18 | site_type: Person 19 | local_business_type: '' 20 | org_name: '' 21 | description: 'A highly-customizable Hugo academic resume theme powered by Wowchemy website builder.' 22 | twitter: 'wowchemy' 23 | analytics: 24 | google_analytics: '' 25 | baidu_tongji: '' 26 | verification: 27 | google: '' 28 | baidu: '' 29 | 30 | # Site header 31 | 32 | header: 33 | navbar: 34 | enable: true 35 | align: l 36 | show_logo: true 37 | show_language: false 38 | show_day_night: true 39 | show_search: true 40 | highlight_active_link: true 41 | 42 | # Site footer 43 | 44 | footer: 45 | copyright: 46 | notice: '© {year} Me. This work is licensed under {license}' 47 | license: 48 | enable: true 49 | allow_derivatives: false 50 | share_alike: true 51 | allow_commercial: false 52 | 53 | # Localization 54 | 55 | locale: 56 | date_format: 'Jan 2, 2006' 57 | time_format: '3:04 PM' 58 | address_format: en-us 59 | 60 | # Site features 61 | 62 | features: 63 | syntax_highlighter: 64 | theme_light: github-light 65 | theme_dark: dracula 66 | math: 67 | enable: false 68 | privacy_pack: 69 | enable: false 70 | repository: 71 | url: 'https://github.com//' 72 | content_dir: content 73 | branch: main 74 | avatar: 75 | gravatar: false 76 | shape: circle 77 | comment: 78 | provider: '' 79 | disqus: 80 | shortname: '' 81 | show_count: true 82 | commento: 83 | url: '' 84 | giscus: 85 | repo: '' 86 | repo_id: '' 87 | category: '' 88 | category_id: '' 89 | search: 90 | provider: wowchemy 91 | algolia: 92 | app_id: '' 93 | api_key: '' 94 | index_name: '' 95 | show_logo: false 96 | map: 97 | provider: '' 98 | api_key: '' 99 | zoom: 15 100 | 101 | # Extensions 102 | 103 | extensions: 104 | cms: 105 | branch: main 106 | local_backend: false 107 | academicons: 108 | enable: true 109 | 110 | # Security 111 | 112 | security: 113 | # Allow frame for embedding speaker notes in slides 114 | allow_frame: true 115 | -------------------------------------------------------------------------------- /content/event/example/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Example Talk 3 | 4 | event: Wowchemy Conference 5 | event_url: https://example.org 6 | 7 | location: Wowchemy HQ 8 | address: 9 | street: 450 Serra Mall 10 | city: Stanford 11 | region: CA 12 | postcode: '94305' 13 | country: United States 14 | 15 | summary: An example talk using Wowchemy's Markdown slides feature. 16 | abstract: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellusac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam.' 17 | 18 | # Talk start and end times. 19 | # End time can optionally be hidden by prefixing the line with `#`. 20 | date: '2030-06-01T13:00:00Z' 21 | date_end: '2030-06-01T15:00:00Z' 22 | all_day: false 23 | 24 | # Schedule page publish date (NOT talk date). 25 | publishDate: '2017-01-01T00:00:00Z' 26 | 27 | authors: [] 28 | tags: [] 29 | 30 | # Is this a featured talk? (true/false) 31 | featured: false 32 | 33 | image: 34 | caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)' 35 | focal_point: Right 36 | 37 | links: 38 | - icon: twitter 39 | icon_pack: fab 40 | name: Follow 41 | url: https://twitter.com/georgecushen 42 | url_code: '' 43 | url_pdf: '' 44 | url_slides: '' 45 | url_video: '' 46 | 47 | # Markdown Slides (optional). 48 | # Associate this talk with Markdown slides. 49 | # Simply enter your slide deck's filename without extension. 50 | # E.g. `slides = "example-slides"` references `content/slides/example-slides.md`. 51 | # Otherwise, set `slides = ""`. 52 | slides: example 53 | 54 | # Projects (optional). 55 | # Associate this post with one or more of your projects. 56 | # Simply enter your project's folder or file name without extension. 57 | # E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`. 58 | # Otherwise, set `projects = []`. 59 | projects: 60 | - example 61 | --- 62 | 63 | {{% callout note %}} 64 | Click on the **Slides** button above to view the built-in slides feature. 65 | {{% /callout %}} 66 | 67 | Slides can be added in a few ways: 68 | 69 | - **Create** slides using Wowchemy's [_Slides_](https://wowchemy.com/docs/managing-content/#create-slides) feature and link using `slides` parameter in the front matter of the talk file 70 | - **Upload** an existing slide deck to `static/` and link using `url_slides` parameter in the front matter of the talk file 71 | - **Embed** your slides (e.g. Google Slides) or presentation video on this page using [shortcodes](https://wowchemy.com/docs/writing-markdown-latex/). 72 | 73 | Further event details, including [page elements](https://wowchemy.com/docs/writing-markdown-latex/) such as image galleries, can be added to the body of this page. 74 | -------------------------------------------------------------------------------- /content/post/jupyter/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Display Jupyter Notebooks with Academic 3 | subtitle: Learn how to blog in Academic using Jupyter notebooks 4 | summary: Learn how to blog in Academic using Jupyter notebooks 5 | authors: 6 | - admin 7 | tags: [] 8 | categories: [] 9 | projects: [] 10 | date: '2019-02-05T00:00:00Z' 11 | lastMod: '2019-09-05T00:00:00Z' 12 | image: 13 | caption: '' 14 | focal_point: '' 15 | --- 16 | 17 | ```python 18 | from IPython.core.display import Image 19 | Image('https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png') 20 | ``` 21 | 22 | ![png](./index_1_0.png) 23 | 24 | ```python 25 | print("Welcome to Academic!") 26 | ``` 27 | 28 | Welcome to Academic! 29 | 30 | ## Install Python and JupyterLab 31 | 32 | [Install Anaconda](https://www.anaconda.com/distribution/#download-section) which includes Python 3 and JupyterLab. 33 | 34 | Alternatively, install JupyterLab with `pip3 install jupyterlab`. 35 | 36 | ## Create or upload a Jupyter notebook 37 | 38 | Run the following commands in your Terminal, substituting `` and `` with the file path to your Academic website folder and a short title for your blog post (use hyphens instead of spaces), respectively: 39 | 40 | ```bash 41 | mkdir -p /content/post// 42 | cd /content/post// 43 | jupyter lab index.ipynb 44 | ``` 45 | 46 | The `jupyter` command above will launch the JupyterLab editor, allowing us to add Academic metadata and write the content. 47 | 48 | ## Edit your post metadata 49 | 50 | The first cell of your Jupter notebook will contain your post metadata ([front matter](https://sourcethemes.com/academic/docs/front-matter/)). 51 | 52 | In Jupter, choose _Markdown_ as the type of the first cell and wrap your Academic metadata in three dashes, indicating that it is YAML front matter: 53 | 54 | ``` 55 | --- 56 | title: My post's title 57 | date: 2019-09-01 58 | 59 | # Put any other Academic metadata here... 60 | --- 61 | ``` 62 | 63 | Edit the metadata of your post, using the [documentation](https://sourcethemes.com/academic/docs/managing-content) as a guide to the available options. 64 | 65 | To set a [featured image](https://sourcethemes.com/academic/docs/managing-content/#featured-image), place an image named `featured` into your post's folder. 66 | 67 | For other tips, such as using math, see the guide on [writing content with Academic](https://wowchemy.com/docs/content/writing-markdown-latex/). 68 | 69 | ## Convert notebook to Markdown 70 | 71 | ```bash 72 | jupyter nbconvert index.ipynb --to markdown --NbConvertApp.output_files_dir=. 73 | ``` 74 | 75 | ## Example 76 | 77 | This post was created with Jupyter. The orginal files can be found at https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter 78 | -------------------------------------------------------------------------------- /content/publication/preprint/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "An example preprint / working paper" 3 | authors: 4 | - admin 5 | date: "2019-04-07T00:00:00Z" 6 | doi: "" 7 | 8 | # Schedule page publish date (NOT publication's date). 9 | publishDate: "2017-01-01T00:00:00Z" 10 | 11 | # Publication type. 12 | # Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article; 13 | # 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section; 14 | # 7 = Thesis; 8 = Patent 15 | publication_types: ["3"] 16 | 17 | # Publication name and optional abbreviated publication name. 18 | publication: "" 19 | publication_short: "" 20 | 21 | abstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida. 22 | 23 | # Summary. An optional shortened abstract. 24 | summary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. 25 | 26 | tags: 27 | - Source Themes 28 | featured: false 29 | 30 | links: 31 | - name: Custom Link 32 | url: http://example.org 33 | url_pdf: http://arxiv.org/pdf/1512.04133v1 34 | url_code: 'https://github.com/wowchemy/wowchemy-hugo-themes' 35 | url_dataset: '#' 36 | url_poster: '#' 37 | url_project: '' 38 | url_slides: '' 39 | url_source: '#' 40 | url_video: '#' 41 | 42 | # Featured image 43 | # To use, add an image named `featured.jpg/png` to your page's folder. 44 | image: 45 | caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/s9CC2SKySJM)' 46 | focal_point: "" 47 | preview_only: false 48 | 49 | # Associated Projects (optional). 50 | # Associate this publication with one or more of your projects. 51 | # Simply enter your project's folder or file name without extension. 52 | # E.g. `internal-project` references `content/project/internal-project/index.md`. 53 | # Otherwise, set `projects: []`. 54 | projects: 55 | - internal-project 56 | 57 | # Slides (optional). 58 | # Associate this publication with Markdown slides. 59 | # Simply enter your slide deck's filename without extension. 60 | # E.g. `slides: "example"` references `content/slides/example/index.md`. 61 | # Otherwise, set `slides: ""`. 62 | slides: example 63 | --- 64 | 65 | {{% callout note %}} 66 | Create your slides in Markdown - click the *Slides* button to check out the example. 67 | {{% /callout %}} 68 | 69 | Supplementary notes can be added here, including [code, math, and images](https://wowchemy.com/docs/writing-markdown-latex/). 70 | -------------------------------------------------------------------------------- /content/authors/admin/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Display name 3 | title: Alice Wu 吳恩達 4 | 5 | # Full name (for SEO) 6 | first_name: Alice 7 | last_name: Wu 8 | 9 | # Status emoji 10 | status: 11 | icon: ☕️ 12 | 13 | # Is this the primary user of the site? 14 | superuser: true 15 | 16 | # Role/position/tagline 17 | role: Professor of Artificial Intelligence 18 | 19 | # Organizations/Affiliations to show in About widget 20 | organizations: 21 | - name: Stanford University 22 | url: https://www.stanford.edu/ 23 | 24 | # Short bio (displayed in user profile at end of posts) 25 | bio: My research interests include distributed robotics, mobile computing and programmable matter. 26 | 27 | # Interests to show in About widget 28 | interests: 29 | - Artificial Intelligence 30 | - Computational Linguistics 31 | - Information Retrieval 32 | 33 | # Education to show in About widget 34 | education: 35 | courses: 36 | - course: PhD in Artificial Intelligence 37 | institution: Stanford University 38 | year: 2012 39 | - course: MEng in Artificial Intelligence 40 | institution: Massachusetts Institute of Technology 41 | year: 2009 42 | - course: BSc in Artificial Intelligence 43 | institution: Massachusetts Institute of Technology 44 | year: 2008 45 | 46 | # Social/Academic Networking 47 | # For available icons, see: https://wowchemy.com/docs/getting-started/page-builder/#icons 48 | # For an email link, use "fas" icon pack, "envelope" icon, and a link in the 49 | # form "mailto:your-email@example.com" or "/#contact" for contact widget. 50 | social: 51 | - icon: envelope 52 | icon_pack: fas 53 | link: '/#contact' 54 | - icon: twitter 55 | icon_pack: fab 56 | link: https://twitter.com/GeorgeCushen 57 | label: Follow me on Twitter 58 | display: 59 | header: true 60 | - icon: graduation-cap # Alternatively, use `google-scholar` icon from `ai` icon pack 61 | icon_pack: fas 62 | link: https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ 63 | - icon: github 64 | icon_pack: fab 65 | link: https://github.com/gcushen 66 | - icon: linkedin 67 | icon_pack: fab 68 | link: https://www.linkedin.com/ 69 | # Link to a PDF of your resume/CV. 70 | # To use: copy your resume to `static/uploads/resume.pdf`, enable `ai` icons in `params.yaml`, 71 | # and uncomment the lines below. 72 | - icon: cv 73 | icon_pack: ai 74 | link: uploads/resume.pdf 75 | 76 | # Enter email to display Gravatar (if Gravatar enabled in Config) 77 | email: '' 78 | 79 | # Highlight the author in author lists? (true/false) 80 | highlight_name: true 81 | --- 82 | 83 | Alice Wu is a professor of artificial intelligence at the Stanford AI Lab. Her research interests include distributed robotics, mobile computing and programmable matter. She leads the Robotic Neurobiology group, which develops self-reconfiguring robots, systems of self-organizing robots, and mobile sensor networks. 84 | {style="text-align: justify;"} 85 | -------------------------------------------------------------------------------- /content/publication/journal-article/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "An example journal article" 3 | authors: 4 | - admin 5 | - Robert Ford 6 | author_notes: 7 | - "Equal contribution" 8 | - "Equal contribution" 9 | date: "2015-09-01T00:00:00Z" 10 | doi: "" 11 | 12 | # Schedule page publish date (NOT publication's date). 13 | publishDate: "2017-01-01T00:00:00Z" 14 | 15 | # Publication type. 16 | # Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article; 17 | # 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section; 18 | # 7 = Thesis; 8 = Patent 19 | publication_types: ["2"] 20 | 21 | # Publication name and optional abbreviated publication name. 22 | publication: "*Journal of Source Themes, 1*(1)" 23 | publication_short: "" 24 | 25 | abstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida. 26 | 27 | # Summary. An optional shortened abstract. 28 | summary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. 29 | 30 | tags: 31 | - Source Themes 32 | featured: false 33 | 34 | # links: 35 | # - name: "" 36 | # url: "" 37 | url_pdf: http://arxiv.org/pdf/1512.04133v1 38 | url_code: 'https://github.com/wowchemy/wowchemy-hugo-themes' 39 | url_dataset: '' 40 | url_poster: '' 41 | url_project: '' 42 | url_slides: '' 43 | url_source: '' 44 | url_video: '' 45 | 46 | # Featured image 47 | # To use, add an image named `featured.jpg/png` to your page's folder. 48 | image: 49 | caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/jdD8gXaTZsc)' 50 | focal_point: "" 51 | preview_only: false 52 | 53 | # Associated Projects (optional). 54 | # Associate this publication with one or more of your projects. 55 | # Simply enter your project's folder or file name without extension. 56 | # E.g. `internal-project` references `content/project/internal-project/index.md`. 57 | # Otherwise, set `projects: []`. 58 | projects: [] 59 | 60 | # Slides (optional). 61 | # Associate this publication with Markdown slides. 62 | # Simply enter your slide deck's filename without extension. 63 | # E.g. `slides: "example"` references `content/slides/example/index.md`. 64 | # Otherwise, set `slides: ""`. 65 | slides: example 66 | --- 67 | 68 | {{% callout note %}} 69 | Click the *Cite* button above to demo the feature to enable visitors to import publication metadata into their reference management software. 70 | {{% /callout %}} 71 | 72 | {{% callout note %}} 73 | Create your slides in Markdown - click the *Slides* button to check out the example. 74 | {{% /callout %}} 75 | 76 | Supplementary notes can be added here, including [code, math, and images](https://wowchemy.com/docs/writing-markdown-latex/). 77 | -------------------------------------------------------------------------------- /content/publication/conference-paper/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'An example conference paper' 3 | 4 | # Authors 5 | # If you created a profile for a user (e.g. the default `admin` user), write the username (folder name) here 6 | # and it will be replaced with their full name and linked to their profile. 7 | authors: 8 | - admin 9 | - Robert Ford 10 | 11 | # Author notes (optional) 12 | author_notes: 13 | - 'Equal contribution' 14 | - 'Equal contribution' 15 | 16 | date: '2013-07-01T00:00:00Z' 17 | doi: '' 18 | 19 | # Schedule page publish date (NOT publication's date). 20 | publishDate: '2017-01-01T00:00:00Z' 21 | 22 | # Publication type. 23 | # Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article; 24 | # 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section; 25 | # 7 = Thesis; 8 = Patent 26 | publication_types: ['1'] 27 | 28 | # Publication name and optional abbreviated publication name. 29 | publication: In *Wowchemy Conference* 30 | publication_short: In *ICW* 31 | 32 | abstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida. 33 | 34 | # Summary. An optional shortened abstract. 35 | summary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. 36 | 37 | tags: [] 38 | 39 | # Display this page in the Featured widget? 40 | featured: true 41 | 42 | # Custom links (uncomment lines below) 43 | # links: 44 | # - name: Custom Link 45 | # url: http://example.org 46 | 47 | url_pdf: '' 48 | url_code: 'https://github.com/wowchemy/wowchemy-hugo-themes' 49 | url_dataset: 'https://github.com/wowchemy/wowchemy-hugo-themes' 50 | url_poster: '' 51 | url_project: '' 52 | url_slides: '' 53 | url_source: 'https://github.com/wowchemy/wowchemy-hugo-themes' 54 | url_video: 'https://youtube.com' 55 | 56 | # Featured image 57 | # To use, add an image named `featured.jpg/png` to your page's folder. 58 | image: 59 | caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/pLCdAaMFLTE)' 60 | focal_point: '' 61 | preview_only: false 62 | 63 | # Associated Projects (optional). 64 | # Associate this publication with one or more of your projects. 65 | # Simply enter your project's folder or file name without extension. 66 | # E.g. `internal-project` references `content/project/internal-project/index.md`. 67 | # Otherwise, set `projects: []`. 68 | projects: 69 | - example 70 | 71 | # Slides (optional). 72 | # Associate this publication with Markdown slides. 73 | # Simply enter your slide deck's filename without extension. 74 | # E.g. `slides: "example"` references `content/slides/example/index.md`. 75 | # Otherwise, set `slides: ""`. 76 | slides: example 77 | --- 78 | 79 | {{% callout note %}} 80 | Click the _Cite_ button above to demo the feature to enable visitors to import publication metadata into their reference management software. 81 | {{% /callout %}} 82 | 83 | {{% callout note %}} 84 | Create your slides in Markdown - click the _Slides_ button to check out the example. 85 | {{% /callout %}} 86 | 87 | Supplementary notes can be added here, including [code, math, and images](https://wowchemy.com/docs/writing-markdown-latex/). 88 | -------------------------------------------------------------------------------- /content/project/example/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Example Project 3 | summary: An example of using the in-built project page. 4 | tags: 5 | - Deep Learning 6 | date: '2016-04-27T00:00:00Z' 7 | 8 | # Optional external URL for project (replaces project detail page). 9 | external_link: '' 10 | 11 | image: 12 | caption: Photo by rawpixel on Unsplash 13 | focal_point: Smart 14 | 15 | links: 16 | - icon: twitter 17 | icon_pack: fab 18 | name: Follow 19 | url: https://twitter.com/georgecushen 20 | url_code: '' 21 | url_pdf: '' 22 | url_slides: '' 23 | url_video: '' 24 | 25 | # Slides (optional). 26 | # Associate this project with Markdown slides. 27 | # Simply enter your slide deck's filename without extension. 28 | # E.g. `slides = "example-slides"` references `content/slides/example-slides.md`. 29 | # Otherwise, set `slides = ""`. 30 | slides: example 31 | --- 32 | 33 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida. 34 | 35 | Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus. 36 | 37 | Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus. 38 | 39 | Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare. 40 | 41 | Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at. 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Hugo Academic Theme](https://github.com/wowchemy/starter-hugo-academic) 2 | 3 | [![Screenshot](./preview.png)](https://wowchemy.com/hugo-themes/) 4 | 5 | The Hugo **Academic Resumé Template** empowers you to easily create your job-winning online resumé, showcase your academic publications, and create online courses or knowledge bases to grow your audience. 6 | 7 | [![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://wowchemy.com/hugo-themes/) 8 | [![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138) 9 | [![Twitter Follow](https://img.shields.io/twitter/follow/wowchemy?label=Follow%20on%20Twitter)](https://twitter.com/wowchemy) 10 | 11 | ️**Trusted by 250,000+ researchers, educators, and students.** Highly customizable via the integrated **no-code, widget-based Wowchemy page builder**, making every site truly personalized ⭐⭐⭐⭐⭐ 12 | 13 | Easily write technical content with plain text Markdown, LaTeX math, diagrams, RMarkdown, or Jupyter, and import publications from BibTeX. 14 | 15 | [Check out the latest demo](https://academic-demo.netlify.app/) of what you'll get in less than 10 minutes, or [get inspired by our academics and research groups](https://wowchemy.com/creators/). 16 | 17 | The integrated [**Wowchemy**](https://wowchemy.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs. 18 | 19 | - 👉 [**Get Started**](https://wowchemy.com/hugo-themes/) 20 | - 📚 [View the **documentation**](https://wowchemy.com/docs/) 21 | - 💬 [Chat with the **Wowchemy research community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io) 22 | - 🐦 Twitter: [@wowchemy](https://twitter.com/wowchemy) [@GeorgeCushen](https://twitter.com/GeorgeCushen) [#MadeWithWowchemy](https://twitter.com/search?q=%23MadeWithWowchemy&src=typed_query) 23 | - ⬇️ **Automatically import your publications from BibTeX** with the [Hugo Academic CLI](https://github.com/wowchemy/hugo-academic-cli) 24 | - 💡 [Suggest an improvement](https://github.com/wowchemy/wowchemy-hugo-themes/issues) 25 | - ⬆️ **Updating?** View the [Update Guide](https://wowchemy.com/docs/hugo-tutorials/update/) and [Release Notes](https://github.com/wowchemy/wowchemy-hugo-themes/releases) 26 | 27 | ## We ask you, humbly, to support this open source movement 28 | 29 | Today we ask you to defend the open source independence of the Wowchemy website builder and themes 🐧 30 | 31 | We're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way. 32 | 33 | ### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen) 34 | 35 |

Hugo Academic Theme for Wowchemy Website Builder

36 | 37 | ## Demo image credits 38 | 39 | - [Open book](https://unsplash.com/photos/J4kK8b9Fgj8) 40 | - [Course](https://unsplash.com/photos/JKUTrJ4vK00) 41 | 42 | ## Latest news 43 | 44 | 45 | * [Easily make an academic CV website to get more cites and grow your audience 🚀](https://wowchemy.com/blog/easily-make-academic-website/) 46 | * [What's new in v5.2?](https://wowchemy.com/blog/whats-new-in-v5.2/) 47 | * [What's new in v5.1?](https://wowchemy.com/blog/whats-new-in-v5.1/) 48 | * [Version 5.0 (February 2021)](https://wowchemy.com/blog/version-5.0-february-2021/) 49 | * [Version 5.0 Beta 3 (February 2021)](https://wowchemy.com/blog/version-5.0-beta-3-february-2021/) 50 | 51 | -------------------------------------------------------------------------------- /content/slides/example/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Slides 3 | summary: An introduction to using Wowchemy's Slides feature. 4 | authors: [] 5 | tags: [] 6 | categories: [] 7 | date: '2019-02-05T00:00:00Z' 8 | slides: 9 | # Choose a theme from https://github.com/hakimel/reveal.js#theming 10 | theme: black 11 | # Choose a code highlighting style (if highlighting enabled in `params.toml`) 12 | # Light style: github. Dark style: dracula (default). 13 | highlight_style: dracula 14 | --- 15 | 16 | # Create slides in Markdown with Wowchemy 17 | 18 | [Wowchemy](https://wowchemy.com/) | [Documentation](https://wowchemy.com/docs/content/slides/) 19 | 20 | --- 21 | 22 | ## Features 23 | 24 | - Efficiently write slides in Markdown 25 | - 3-in-1: Create, Present, and Publish your slides 26 | - Supports speaker notes 27 | - Mobile friendly slides 28 | 29 | --- 30 | 31 | ## Controls 32 | 33 | - Next: `Right Arrow` or `Space` 34 | - Previous: `Left Arrow` 35 | - Start: `Home` 36 | - Finish: `End` 37 | - Overview: `Esc` 38 | - Speaker notes: `S` 39 | - Fullscreen: `F` 40 | - Zoom: `Alt + Click` 41 | - [PDF Export](https://revealjs.com/pdf-export/) 42 | 43 | --- 44 | 45 | ## Code Highlighting 46 | 47 | Inline code: `variable` 48 | 49 | Code block: 50 | 51 | ```python 52 | porridge = "blueberry" 53 | if porridge == "blueberry": 54 | print("Eating...") 55 | ``` 56 | 57 | --- 58 | 59 | ## Math 60 | 61 | In-line math: $x + y = z$ 62 | 63 | Block math: 64 | 65 | $$ 66 | f\left( x \right) = \;\frac{{2\left( {x + 4} \right)\left( {x - 4} \right)}}{{\left( {x + 4} \right)\left( {x + 1} \right)}} 67 | $$ 68 | 69 | --- 70 | 71 | ## Fragments 72 | 73 | Make content appear incrementally 74 | 75 | ``` 76 | {{%/* fragment */%}} One {{%/* /fragment */%}} 77 | {{%/* fragment */%}} **Two** {{%/* /fragment */%}} 78 | {{%/* fragment */%}} Three {{%/* /fragment */%}} 79 | ``` 80 | 81 | Press `Space` to play! 82 | 83 | {{% fragment %}} One {{% /fragment %}} 84 | {{% fragment %}} **Two** {{% /fragment %}} 85 | {{% fragment %}} Three {{% /fragment %}} 86 | 87 | --- 88 | 89 | A fragment can accept two optional parameters: 90 | 91 | - `class`: use a custom style (requires definition in custom CSS) 92 | - `weight`: sets the order in which a fragment appears 93 | 94 | --- 95 | 96 | ## Speaker Notes 97 | 98 | Add speaker notes to your presentation 99 | 100 | ```markdown 101 | {{%/* speaker_note */%}} 102 | 103 | - Only the speaker can read these notes 104 | - Press `S` key to view 105 | {{%/* /speaker_note */%}} 106 | ``` 107 | 108 | Press the `S` key to view the speaker notes! 109 | 110 | {{< speaker_note >}} 111 | 112 | - Only the speaker can read these notes 113 | - Press `S` key to view 114 | {{< /speaker_note >}} 115 | 116 | --- 117 | 118 | ## Themes 119 | 120 | - black: Black background, white text, blue links (default) 121 | - white: White background, black text, blue links 122 | - league: Gray background, white text, blue links 123 | - beige: Beige background, dark text, brown links 124 | - sky: Blue background, thin dark text, blue links 125 | 126 | --- 127 | 128 | - night: Black background, thick white text, orange links 129 | - serif: Cappuccino background, gray text, brown links 130 | - simple: White background, black text, blue links 131 | - solarized: Cream-colored background, dark green text, blue links 132 | 133 | --- 134 | 135 | {{< slide background-image="/media/boards.jpg" >}} 136 | 137 | ## Custom Slide 138 | 139 | Customize the slide style and background 140 | 141 | ```markdown 142 | {{}} 143 | {{}} 144 | {{}} 145 | ``` 146 | 147 | --- 148 | 149 | ## Custom CSS Example 150 | 151 | Let's make headers navy colored. 152 | 153 | Create `assets/css/reveal_custom.css` with: 154 | 155 | ```css 156 | .reveal section h1, 157 | .reveal section h2, 158 | .reveal section h3 { 159 | color: navy; 160 | } 161 | ``` 162 | 163 | --- 164 | 165 | # Questions? 166 | 167 | [Ask](https://discord.gg/z8wNYzb) 168 | 169 | [Documentation](https://wowchemy.com/docs/content/slides/) 170 | -------------------------------------------------------------------------------- /content/post/getting-started/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Welcome to Wowchemy, the website builder for Hugo 3 | subtitle: Welcome 👋 We know that first impressions are important, so we've populated your new site with some initial content to help you get familiar with everything in no time. 4 | 5 | # Summary for listings and search engines 6 | summary: Welcome 👋 We know that first impressions are important, so we've populated your new site with some initial content to help you get familiar with everything in no time. 7 | 8 | # Link this post with a project 9 | projects: [] 10 | 11 | # Date published 12 | date: '2020-12-13T00:00:00Z' 13 | 14 | # Date updated 15 | lastmod: '2020-12-13T00:00:00Z' 16 | 17 | # Is this an unpublished draft? 18 | draft: false 19 | 20 | # Show this page in the Featured widget? 21 | featured: false 22 | 23 | # Featured image 24 | # Place an image named `featured.jpg/png` in this page's folder and customize its options here. 25 | image: 26 | caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/CpkOjOcXdUY)' 27 | focal_point: '' 28 | placement: 2 29 | preview_only: false 30 | 31 | authors: 32 | - admin 33 | - 吳恩達 34 | 35 | tags: 36 | - Academic 37 | - 开源 38 | 39 | categories: 40 | - Demo 41 | - 教程 42 | --- 43 | 44 | ```python 45 | import libr 46 | print('hello') 47 | ``` 48 | 49 | ## Overview 50 | 51 | 1. The Wowchemy website builder for Hugo, along with its starter templates, is designed for professional creators, educators, and teams/organizations - although it can be used to create any kind of site 52 | 2. The template can be modified and customised to suit your needs. It's a good platform for anyone looking to take control of their data and online identity whilst having the convenience to start off with a **no-code solution (write in Markdown and customize with YAML parameters)** and having **flexibility to later add even deeper personalization with HTML and CSS** 53 | 3. You can work with all your favourite tools and apps with hundreds of plugins and integrations to speed up your workflows, interact with your readers, and much more 54 | 55 | [![The template is mobile first with a responsive design to ensure that your site looks stunning on every device.](https://raw.githubusercontent.com/wowchemy/wowchemy-hugo-modules/main/starters/academic/preview.png)](https://wowchemy.com) 56 | 57 | ## Get Started 58 | 59 | - 👉 [**Create a new site**](https://wowchemy.com/templates/) 60 | - 📚 [**Personalize your site**](https://wowchemy.com/docs/) 61 | - 💬 [Chat with the **Wowchemy community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io) 62 | - 🐦 Twitter: [@wowchemy](https://twitter.com/wowchemy) [@GeorgeCushen](https://twitter.com/GeorgeCushen) [#MadeWithWowchemy](https://twitter.com/search?q=%23MadeWithWowchemy&src=typed_query) 63 | - 💡 [Request a **feature** or report a **bug** for _Wowchemy_](https://github.com/wowchemy/wowchemy-hugo-themes/issues) 64 | - ⬆️ **Updating Wowchemy?** View the [Update Tutorial](https://wowchemy.com/docs/hugo-tutorials/update/) and [Release Notes](https://wowchemy.com/updates/) 65 | 66 | ## Crowd-funded open-source software 67 | 68 | To help us develop this template and software sustainably under the MIT license, we ask all individuals and businesses that use it to help support its ongoing maintenance and development via sponsorship. 69 | 70 | ### [❤️ Click here to become a sponsor and help support Wowchemy's future ❤️](https://wowchemy.com/sponsor/) 71 | 72 | As a token of appreciation for sponsoring, you can **unlock [these](https://wowchemy.com/sponsor/) awesome rewards and extra features 🦄✨** 73 | 74 | ## Ecosystem 75 | 76 | - **[Hugo Academic CLI](https://github.com/wowchemy/hugo-academic-cli):** Automatically import publications from BibTeX 77 | 78 | ## Inspiration 79 | 80 | [Check out the latest **demo**](https://academic-demo.netlify.com/) of what you'll get in less than 10 minutes, or [view the **showcase**](https://wowchemy.com/user-stories/) of personal, project, and business sites. 81 | 82 | ## Features 83 | 84 | - **Page builder** - Create _anything_ with [**widgets**](https://wowchemy.com/docs/page-builder/) and [**elements**](https://wowchemy.com/docs/content/writing-markdown-latex/) 85 | - **Edit any type of content** - Blog posts, publications, talks, slides, projects, and more! 86 | - **Create content** in [**Markdown**](https://wowchemy.com/docs/content/writing-markdown-latex/), [**Jupyter**](https://wowchemy.com/docs/import/jupyter/), or [**RStudio**](https://wowchemy.com/docs/install-locally/) 87 | - **Plugin System** - Fully customizable [**color** and **font themes**](https://wowchemy.com/docs/customization/) 88 | - **Display Code and Math** - Code highlighting and [LaTeX math](https://en.wikibooks.org/wiki/LaTeX/Mathematics) supported 89 | - **Integrations** - [Google Analytics](https://analytics.google.com), [Disqus commenting](https://disqus.com), Maps, Contact Forms, and more! 90 | - **Beautiful Site** - Simple and refreshing one page design 91 | - **Industry-Leading SEO** - Help get your website found on search engines and social media 92 | - **Media Galleries** - Display your images and videos with captions in a customizable gallery 93 | - **Mobile Friendly** - Look amazing on every screen with a mobile friendly version of your site 94 | - **Multi-language** - 34+ language packs including English, 中文, and Português 95 | - **Multi-user** - Each author gets their own profile page 96 | - **Privacy Pack** - Assists with GDPR 97 | - **Stand Out** - Bring your site to life with animation, parallax backgrounds, and scroll effects 98 | - **One-Click Deployment** - No servers. No databases. Only files. 99 | 100 | ## Themes 101 | 102 | Wowchemy and its templates come with **automatic day (light) and night (dark) mode** built-in. Alternatively, visitors can choose their preferred mode - click the moon icon in the top right of the [Demo](https://academic-demo.netlify.com/) to see it in action! Day/night mode can also be disabled by the site admin in `params.toml`. 103 | 104 | [Choose a stunning **theme** and **font**](https://wowchemy.com/docs/customization) for your site. Themes are fully customizable. 105 | 106 | ## License 107 | 108 | Copyright 2016-present [George Cushen](https://georgecushen.com). 109 | 110 | Released under the [MIT](https://github.com/wowchemy/wowchemy-hugo-themes/blob/master/LICENSE.md) license. 111 | -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Leave the homepage title empty to use the site title 3 | title: 4 | date: 2022-10-24 5 | type: landing 6 | 7 | sections: 8 | - block: hero 9 | content: 10 | title: Hugo Academic Theme 11 | image: 12 | filename: hero-academic.png 13 | cta: 14 | label: '**Get Started**' 15 | url: https://wowchemy.com/templates/ 16 | cta_alt: 17 | label: Ask a question 18 | url: https://discord.gg/z8wNYzb 19 | cta_note: 20 | label: >- 21 | 22 | text: |- 23 | **Generated by Wowchemy - the FREE, Hugo-based open source website builder trusted by 500,000+ sites.** 24 | 25 | **Easily build anything with blocks - no-code required!** 26 | 27 | From landing pages, second brains, and courses to academic resumés, conferences, and tech blogs. 28 | 29 | 30 |
31 | 32 | 33 | design: 34 | background: 35 | gradient_end: '#1976d2' 36 | gradient_start: '#004ba0' 37 | text_color_light: true 38 | - block: about.avatar 39 | id: about 40 | content: 41 | # Choose a user profile to display (a folder name within `content/authors/`) 42 | username: admin 43 | # Override your bio text from `authors/admin/_index.md`? 44 | text: 45 | - block: features 46 | content: 47 | title: Skills 48 | items: 49 | - name: R 50 | description: 90% 51 | icon: r-project 52 | icon_pack: fab 53 | - name: Statistics 54 | description: 100% 55 | icon: chart-line 56 | icon_pack: fas 57 | - name: Photography 58 | description: 10% 59 | icon: camera-retro 60 | icon_pack: fas 61 | - block: experience 62 | content: 63 | title: Experience 64 | # Date format for experience 65 | # Refer to https://wowchemy.com/docs/customization/#date-format 66 | date_format: Jan 2006 67 | # Experiences. 68 | # Add/remove as many `experience` items below as you like. 69 | # Required fields are `title`, `company`, and `date_start`. 70 | # Leave `date_end` empty if it's your current employer. 71 | # Begin multi-line descriptions with YAML's `|2-` multi-line prefix. 72 | items: 73 | - title: CEO 74 | company: GenCoin 75 | company_url: '' 76 | company_logo: org-gc 77 | location: California 78 | date_start: '2021-01-01' 79 | date_end: '' 80 | description: |2- 81 | Responsibilities include: 82 | 83 | * Analysing 84 | * Modelling 85 | * Deploying 86 | - title: Professor of Semiconductor Physics 87 | company: University X 88 | company_url: '' 89 | company_logo: org-x 90 | location: California 91 | date_start: '2016-01-01' 92 | date_end: '2020-12-31' 93 | description: Taught electronic engineering and researched semiconductor physics. 94 | design: 95 | columns: '2' 96 | - block: accomplishments 97 | content: 98 | # Note: `­` is used to add a 'soft' hyphen in a long heading. 99 | title: 'Accomplish­ments' 100 | subtitle: 101 | # Date format: https://wowchemy.com/docs/customization/#date-format 102 | date_format: Jan 2006 103 | # Accomplishments. 104 | # Add/remove as many `item` blocks below as you like. 105 | # `title`, `organization`, and `date_start` are the required parameters. 106 | # Leave other parameters empty if not required. 107 | # Begin multi-line descriptions with YAML's `|2-` multi-line prefix. 108 | items: 109 | - certificate_url: https://www.coursera.org 110 | date_end: '' 111 | date_start: '2021-01-25' 112 | description: '' 113 | organization: Coursera 114 | organization_url: https://www.coursera.org 115 | title: Neural Networks and Deep Learning 116 | url: '' 117 | - certificate_url: https://www.edx.org 118 | date_end: '' 119 | date_start: '2021-01-01' 120 | description: Formulated informed blockchain models, hypotheses, and use cases. 121 | organization: edX 122 | organization_url: https://www.edx.org 123 | title: Blockchain Fundamentals 124 | url: https://www.edx.org/professional-certificate/uc-berkeleyx-blockchain-fundamentals 125 | - certificate_url: https://www.datacamp.com 126 | date_end: '2020-12-21' 127 | date_start: '2020-07-01' 128 | description: '' 129 | organization: DataCamp 130 | organization_url: https://www.datacamp.com 131 | title: 'Object-Oriented Programming in R' 132 | url: '' 133 | design: 134 | columns: '2' 135 | - block: collection 136 | id: posts 137 | content: 138 | title: Recent Posts 139 | subtitle: '' 140 | text: '' 141 | # Choose how many pages you would like to display (0 = all pages) 142 | count: 5 143 | # Filter on criteria 144 | filters: 145 | folders: 146 | - post 147 | author: "" 148 | category: "" 149 | tag: "" 150 | exclude_featured: false 151 | exclude_future: false 152 | exclude_past: false 153 | publication_type: "" 154 | # Choose how many pages you would like to offset by 155 | offset: 0 156 | # Page order: descending (desc) or ascending (asc) date. 157 | order: desc 158 | design: 159 | # Choose a layout view 160 | view: compact 161 | columns: '2' 162 | - block: portfolio 163 | id: projects 164 | content: 165 | title: Projects 166 | filters: 167 | folders: 168 | - project 169 | # Default filter index (e.g. 0 corresponds to the first `filter_button` instance below). 170 | default_button_index: 0 171 | # Filter toolbar (optional). 172 | # Add or remove as many filters (`filter_button` instances) as you like. 173 | # To show all items, set `tag` to "*". 174 | # To filter by a specific tag, set `tag` to an existing tag name. 175 | # To remove the toolbar, delete the entire `filter_button` block. 176 | buttons: 177 | - name: All 178 | tag: '*' 179 | - name: Deep Learning 180 | tag: Deep Learning 181 | - name: Other 182 | tag: Demo 183 | design: 184 | # Choose how many columns the section has. Valid values: '1' or '2'. 185 | columns: '1' 186 | view: showcase 187 | # For Showcase view, flip alternate rows? 188 | flip_alt_rows: false 189 | - block: markdown 190 | content: 191 | title: Gallery 192 | subtitle: '' 193 | text: |- 194 | {{< gallery album="demo" >}} 195 | design: 196 | columns: '1' 197 | - block: collection 198 | id: featured 199 | content: 200 | title: Featured Publications 201 | filters: 202 | folders: 203 | - publication 204 | featured_only: true 205 | design: 206 | columns: '2' 207 | view: card 208 | - block: collection 209 | content: 210 | title: Recent Publications 211 | text: |- 212 | {{% callout note %}} 213 | Quickly discover relevant content by [filtering publications](./publication/). 214 | {{% /callout %}} 215 | filters: 216 | folders: 217 | - publication 218 | exclude_featured: true 219 | design: 220 | columns: '2' 221 | view: citation 222 | - block: collection 223 | id: talks 224 | content: 225 | title: Recent & Upcoming Talks 226 | filters: 227 | folders: 228 | - event 229 | design: 230 | columns: '2' 231 | view: compact 232 | - block: tag_cloud 233 | content: 234 | title: Popular Topics 235 | design: 236 | columns: '2' 237 | - block: contact 238 | id: contact 239 | content: 240 | title: Contact 241 | subtitle: 242 | text: |- 243 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam mi diam, venenatis ut magna et, vehicula efficitur enim. 244 | # Contact (add or remove contact options as necessary) 245 | email: test@example.org 246 | phone: 888 888 88 88 247 | appointment_url: 'https://calendly.com' 248 | address: 249 | street: 450 Serra Mall 250 | city: Stanford 251 | region: CA 252 | postcode: '94305' 253 | country: United States 254 | country_code: US 255 | directions: Enter Building 1 and take the stairs to Office 200 on Floor 2 256 | office_hours: 257 | - 'Monday 10:00 to 13:00' 258 | - 'Wednesday 09:00 to 10:00' 259 | contact_links: 260 | - icon: twitter 261 | icon_pack: fab 262 | name: DM Me 263 | link: 'https://twitter.com/Twitter' 264 | - icon: skype 265 | icon_pack: fab 266 | name: Skype Me 267 | link: 'skype:echo123?call' 268 | - icon: video 269 | icon_pack: fas 270 | name: Zoom Me 271 | link: 'https://zoom.com' 272 | # Automatically link email and phone or display as text? 273 | autolink: true 274 | # Email form provider 275 | form: 276 | provider: netlify 277 | formspree: 278 | id: 279 | netlify: 280 | # Enable CAPTCHA challenge to reduce spam? 281 | captcha: false 282 | design: 283 | columns: '2' 284 | --- 285 | -------------------------------------------------------------------------------- /content/post/writing-technical-content/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Writing technical content in Markdown 3 | date: 2019-07-12 4 | math: true 5 | image: 6 | placement: 2 7 | caption: 'Image credit: [**John Moeses Bauan**](https://unsplash.com/photos/OGZtQF8iC0g)' 8 | --- 9 | 10 | Wowchemy is designed to give technical content creators a seamless experience. You can focus on the content and Wowchemy handles the rest. 11 | 12 | **Highlight your code snippets, take notes on math classes, and draw diagrams from textual representation.** 13 | 14 | On this page, you'll find some examples of the types of technical content that can be rendered with Wowchemy. 15 | 16 | ## Examples 17 | 18 | ### Code 19 | 20 | Wowchemy supports a Markdown extension for highlighting code syntax. You can customize the styles under the `syntax_highlighter` option in your `config/_default/params.yaml` file. 21 | 22 | ```python 23 | import pandas as pd 24 | data = pd.read_csv("data.csv") 25 | data.head() 26 | ``` 27 | 28 | renders as 29 | 30 | ```python 31 | import pandas as pd 32 | data = pd.read_csv("data.csv") 33 | data.head() 34 | ``` 35 | 36 | ### Mindmaps 37 | 38 | Wowchemy supports a Markdown extension for mindmaps. 39 | 40 | Simply insert a Markdown `markmap` code block and optionally set the height of the mindmap as shown in the example below. 41 | 42 | A simple mindmap defined as a Markdown list: 43 | 44 |
45 |
 46 | 
 47 | ```markmap {height="200px"}
 48 | - Hugo Modules
 49 |   - wowchemy
 50 |   - wowchemy-plugins-netlify
 51 |   - wowchemy-plugins-netlify-cms
 52 |   - wowchemy-plugins-reveal
 53 | ```
 54 | 
 55 | 
56 |
57 | 58 | renders as 59 | 60 | ```markmap {height="200px"} 61 | - Hugo Modules 62 | - wowchemy 63 | - wowchemy-plugins-netlify 64 | - wowchemy-plugins-netlify-cms 65 | - wowchemy-plugins-reveal 66 | ``` 67 | 68 | A more advanced mindmap with formatting, code blocks, and math: 69 | 70 |
71 |
 72 | 
 73 | ```markmap
 74 | - Mindmaps
 75 |   - Links
 76 |     - [Wowchemy Docs](https://wowchemy.com/docs/)
 77 |     - [Discord Community](https://discord.gg/z8wNYzb)
 78 |     - [GitHub](https://github.com/wowchemy/wowchemy-hugo-themes)
 79 |   - Features
 80 |     - Markdown formatting
 81 |     - **inline** ~~text~~ *styles*
 82 |     - multiline
 83 |       text
 84 |     - `inline code`
 85 |     -
 86 |       ```js
 87 |       console.log('hello');
 88 |       console.log('code block');
 89 |       ```
 90 |     - Math: $x = {-b \pm \sqrt{b^2-4ac} \over 2a}$
 91 | ```
 92 | 
 93 | 
94 |
95 | 96 | renders as 97 | 98 | ```markmap 99 | - Mindmaps 100 | - Links 101 | - [Wowchemy Docs](https://wowchemy.com/docs/) 102 | - [Discord Community](https://discord.gg/z8wNYzb) 103 | - [GitHub](https://github.com/wowchemy/wowchemy-hugo-themes) 104 | - Features 105 | - Markdown formatting 106 | - **inline** ~~text~~ *styles* 107 | - multiline 108 | text 109 | - `inline code` 110 | - 111 | ```js 112 | console.log('hello'); 113 | console.log('code block'); 114 | ``` 115 | - Math: $x = {-b \pm \sqrt{b^2-4ac} \over 2a}$ 116 | ``` 117 | 118 | ### Charts 119 | 120 | Wowchemy supports the popular [Plotly](https://plot.ly/) format for interactive charts. 121 | 122 | Save your Plotly JSON in your page folder, for example `line-chart.json`, and then add the `{{}}` shortcode where you would like the chart to appear. 123 | 124 | Demo: 125 | 126 | {{< chart data="line-chart" >}} 127 | 128 | You might also find the [Plotly JSON Editor](http://plotly-json-editor.getforge.io/) useful. 129 | 130 | ### Math 131 | 132 | Wowchemy supports a Markdown extension for $\LaTeX$ math. You can enable this feature by toggling the `math` option in your `config/_default/params.yaml` file. 133 | 134 | To render _inline_ or _block_ math, wrap your LaTeX math with `{{}}$...${{}}` or `{{}}$$...$${{}}`, respectively. (We wrap the LaTeX math in the Wowchemy _math_ shortcode to prevent Hugo rendering our math as Markdown. The _math_ shortcode is new in v5.5-dev.) 135 | 136 | Example **math block**: 137 | 138 | ```latex 139 | {{}} 140 | $$ 141 | \gamma_{n} = \frac{ \left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T \left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}{\left \|\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right \|^2} 142 | $$ 143 | {{}} 144 | ``` 145 | 146 | renders as 147 | 148 | {{< math >}} 149 | $$\gamma_{n} = \frac{ \left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T \left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}{\left \|\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right \|^2}$$ 150 | {{< /math >}} 151 | 152 | Example **inline math** `{{}}$\nabla F(\mathbf{x}_{n})${{}}` renders as {{< math >}}$\nabla F(\mathbf{x}_{n})${{< /math >}}. 153 | 154 | Example **multi-line math** using the math linebreak (`\\`): 155 | 156 | ```latex 157 | {{}} 158 | $$f(k;p_{0}^{*}) = \begin{cases}p_{0}^{*} & \text{if }k=1, \\ 159 | 1-p_{0}^{*} & \text{if }k=0.\end{cases}$$ 160 | {{}} 161 | ``` 162 | 163 | renders as 164 | 165 | {{< math >}} 166 | 167 | $$ 168 | f(k;p_{0}^{*}) = \begin{cases}p_{0}^{*} & \text{if }k=1, \\ 169 | 1-p_{0}^{*} & \text{if }k=0.\end{cases} 170 | $$ 171 | 172 | {{< /math >}} 173 | 174 | ### Diagrams 175 | 176 | Wowchemy supports a Markdown extension for diagrams. You can enable this feature by toggling the `diagram` option in your `config/_default/params.toml` file or by adding `diagram: true` to your page front matter. 177 | 178 | An example **flowchart**: 179 | 180 | ```mermaid 181 | graph TD 182 | A[Hard] -->|Text| B(Round) 183 | B --> C{Decision} 184 | C -->|One| D[Result 1] 185 | C -->|Two| E[Result 2] 186 | ``` 187 | 188 | renders as 189 | 190 | ```mermaid 191 | graph TD 192 | A[Hard] -->|Text| B(Round) 193 | B --> C{Decision} 194 | C -->|One| D[Result 1] 195 | C -->|Two| E[Result 2] 196 | ``` 197 | 198 | An example **sequence diagram**: 199 | 200 | ```mermaid 201 | sequenceDiagram 202 | Alice->>John: Hello John, how are you? 203 | loop Healthcheck 204 | John->>John: Fight against hypochondria 205 | end 206 | Note right of John: Rational thoughts! 207 | John-->>Alice: Great! 208 | John->>Bob: How about you? 209 | Bob-->>John: Jolly good! 210 | ``` 211 | 212 | renders as 213 | 214 | ```mermaid 215 | sequenceDiagram 216 | Alice->>John: Hello John, how are you? 217 | loop Healthcheck 218 | John->>John: Fight against hypochondria 219 | end 220 | Note right of John: Rational thoughts! 221 | John-->>Alice: Great! 222 | John->>Bob: How about you? 223 | Bob-->>John: Jolly good! 224 | ``` 225 | 226 | An example **Gantt diagram**: 227 | 228 | ```mermaid 229 | gantt 230 | section Section 231 | Completed :done, des1, 2014-01-06,2014-01-08 232 | Active :active, des2, 2014-01-07, 3d 233 | Parallel 1 : des3, after des1, 1d 234 | Parallel 2 : des4, after des1, 1d 235 | Parallel 3 : des5, after des3, 1d 236 | Parallel 4 : des6, after des4, 1d 237 | ``` 238 | 239 | renders as 240 | 241 | ```mermaid 242 | gantt 243 | section Section 244 | Completed :done, des1, 2014-01-06,2014-01-08 245 | Active :active, des2, 2014-01-07, 3d 246 | Parallel 1 : des3, after des1, 1d 247 | Parallel 2 : des4, after des1, 1d 248 | Parallel 3 : des5, after des3, 1d 249 | Parallel 4 : des6, after des4, 1d 250 | ``` 251 | 252 | An example **class diagram**: 253 | 254 | ```mermaid 255 | classDiagram 256 | Class01 <|-- AveryLongClass : Cool 257 | Class03 *-- Class04 258 | Class05 o-- Class06 259 | Class07 .. Class08 260 | Class09 --> C2 : Where am i? 261 | Class09 --* C3 262 | Class09 --|> Class07 263 | Class07 : equals() 264 | Class07 : Object[] elementData 265 | Class01 : size() 266 | Class01 : int chimp 267 | Class01 : int gorilla 268 | Class08 <--> C2: Cool label 269 | ``` 270 | 271 | renders as 272 | 273 | ```mermaid 274 | classDiagram 275 | Class01 <|-- AveryLongClass : Cool 276 | Class03 *-- Class04 277 | Class05 o-- Class06 278 | Class07 .. Class08 279 | Class09 --> C2 : Where am i? 280 | Class09 --* C3 281 | Class09 --|> Class07 282 | Class07 : equals() 283 | Class07 : Object[] elementData 284 | Class01 : size() 285 | Class01 : int chimp 286 | Class01 : int gorilla 287 | Class08 <--> C2: Cool label 288 | ``` 289 | 290 | An example **state diagram**: 291 | 292 | ```mermaid 293 | stateDiagram 294 | [*] --> Still 295 | Still --> [*] 296 | Still --> Moving 297 | Moving --> Still 298 | Moving --> Crash 299 | Crash --> [*] 300 | ``` 301 | 302 | renders as 303 | 304 | ```mermaid 305 | stateDiagram 306 | [*] --> Still 307 | Still --> [*] 308 | Still --> Moving 309 | Moving --> Still 310 | Moving --> Crash 311 | Crash --> [*] 312 | ``` 313 | 314 | ### Todo lists 315 | 316 | You can even write your todo lists in Markdown too: 317 | 318 | ```markdown 319 | - [x] Write math example 320 | - [x] Write diagram example 321 | - [ ] Do something else 322 | ``` 323 | 324 | renders as 325 | 326 | - [x] Write math example 327 | - [x] Write diagram example 328 | - [ ] Do something else 329 | 330 | ### Tables 331 | 332 | Save your spreadsheet as a CSV file in your page's folder and then render it by adding the _Table_ shortcode to your page: 333 | 334 | ```go 335 | {{}} 336 | ``` 337 | 338 | renders as 339 | 340 | {{< table path="results.csv" header="true" caption="Table 1: My results" >}} 341 | 342 | ### Callouts 343 | 344 | Academic supports a [shortcode for callouts](https://wowchemy.com/docs/content/writing-markdown-latex/#callouts), also referred to as _asides_, _hints_, or _alerts_. By wrapping a paragraph in `{{%/* callout note */%}} ... {{%/* /callout */%}}`, it will render as an aside. 345 | 346 | ```markdown 347 | {{%/* callout note */%}} 348 | A Markdown aside is useful for displaying notices, hints, or definitions to your readers. 349 | {{%/* /callout */%}} 350 | ``` 351 | 352 | renders as 353 | 354 | {{% callout note %}} 355 | A Markdown aside is useful for displaying notices, hints, or definitions to your readers. 356 | {{% /callout %}} 357 | 358 | ### Spoilers 359 | 360 | Add a spoiler to a page to reveal text, such as an answer to a question, after a button is clicked. 361 | 362 | ```markdown 363 | {{}} 364 | You found me! 365 | {{}} 366 | ``` 367 | 368 | renders as 369 | 370 | {{< spoiler text="Click to view the spoiler" >}} You found me! {{< /spoiler >}} 371 | 372 | ### Icons 373 | 374 | Academic enables you to use a wide range of [icons from _Font Awesome_ and _Academicons_](https://wowchemy.com/docs/getting-started/page-builder/#icons) in addition to [emojis](https://wowchemy.com/docs/content/writing-markdown-latex/#emojis). 375 | 376 | Here are some examples using the `icon` shortcode to render icons: 377 | 378 | ```markdown 379 | {{}} Terminal 380 | {{}} Python 381 | {{}} R 382 | ``` 383 | 384 | renders as 385 | 386 | {{< icon name="terminal" pack="fas" >}} Terminal 387 | {{< icon name="python" pack="fab" >}} Python 388 | {{< icon name="r-project" pack="fab" >}} R 389 | 390 | ### Did you find this page helpful? Consider sharing it 🙌 391 | -------------------------------------------------------------------------------- /content/post/jupyter/index.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "raw", 5 | "metadata": {}, 6 | "source": [ 7 | "---\n", 8 | "title: Display Jupyter Notebooks with Academic\n", 9 | "subtitle: Learn how to blog in Academic using Jupyter notebooks\n", 10 | "summary: Learn how to blog in Academic using Jupyter notebooks\n", 11 | "authors:\n", 12 | "- admin\n", 13 | "tags: []\n", 14 | "categories: []\n", 15 | "date: \"2019-02-05T00:00:00Z\"\n", 16 | "lastMod: \"2019-09-05T00:00:00Z\"\n", 17 | "featured: false\n", 18 | "draft: false\n", 19 | "\n", 20 | "# Featured image\n", 21 | "# To use, add an image named `featured.jpg/png` to your page's folder. \n", 22 | "image:\n", 23 | " caption: \"\"\n", 24 | " focal_point: \"\"\n", 25 | "\n", 26 | "# Projects (optional).\n", 27 | "# Associate this post with one or more of your projects.\n", 28 | "# Simply enter your project's folder or file name without extension.\n", 29 | "# E.g. `projects = [\"internal-project\"]` references \n", 30 | "# `content/project/deep-learning/index.md`.\n", 31 | "# Otherwise, set `projects = []`.\n", 32 | "projects: []\n", 33 | "---" 34 | ] 35 | }, 36 | { 37 | "cell_type": "code", 38 | "execution_count": 5, 39 | "metadata": {}, 40 | "outputs": [ 41 | { 42 | "data": { 43 | "image/png": "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\n", 44 | "text/plain": [ 45 | "" 46 | ] 47 | }, 48 | "execution_count": 5, 49 | "metadata": {}, 50 | "output_type": "execute_result" 51 | } 52 | ], 53 | "source": [ 54 | "from IPython.core.display import Image\n", 55 | "Image('https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png')" 56 | ] 57 | }, 58 | { 59 | "cell_type": "code", 60 | "execution_count": 6, 61 | "metadata": {}, 62 | "outputs": [ 63 | { 64 | "name": "stdout", 65 | "output_type": "stream", 66 | "text": [ 67 | "Welcome to Academic!\n" 68 | ] 69 | } 70 | ], 71 | "source": [ 72 | "print(\"Welcome to Academic!\")" 73 | ] 74 | }, 75 | { 76 | "cell_type": "markdown", 77 | "metadata": {}, 78 | "source": [ 79 | "## Install Python and JupyterLab\n", 80 | "\n", 81 | "[Install Anaconda](https://www.anaconda.com/distribution/#download-section) which includes Python 3 and JupyterLab.\n", 82 | "\n", 83 | "Alternatively, install JupyterLab with `pip3 install jupyterlab`." 84 | ] 85 | }, 86 | { 87 | "cell_type": "markdown", 88 | "metadata": {}, 89 | "source": [ 90 | "## Create or upload a Jupyter notebook\n", 91 | "\n", 92 | "Run the following commands in your Terminal, substituting `` and `` with the file path to your Academic website folder and a short title for your blog post (use hyphens instead of spaces), respectively:" 93 | ] 94 | }, 95 | { 96 | "cell_type": "markdown", 97 | "metadata": {}, 98 | "source": [ 99 | "```bash\n", 100 | "mkdir -p /content/post//\n", 101 | "cd /content/post//\n", 102 | "jupyter lab index.ipynb\n", 103 | "```" 104 | ] 105 | }, 106 | { 107 | "cell_type": "markdown", 108 | "metadata": {}, 109 | "source": [ 110 | "The `jupyter` command above will launch the JupyterLab editor, allowing us to add Academic metadata and write the content." 111 | ] 112 | }, 113 | { 114 | "cell_type": "markdown", 115 | "metadata": {}, 116 | "source": [ 117 | "## Edit your post metadata\n", 118 | "\n", 119 | "The first cell of your Jupter notebook will contain your post metadata ([front matter](https://sourcethemes.com/academic/docs/front-matter/)).\n", 120 | "\n", 121 | "In Jupter, choose _Markdown_ as the type of the first cell and wrap your Academic metadata in three dashes, indicating that it is YAML front matter: \n", 122 | "\n", 123 | "```\n", 124 | "---\n", 125 | "title: My post's title\n", 126 | "date: 2019-09-01\n", 127 | "\n", 128 | "# Put any other Academic metadata here...\n", 129 | "---\n", 130 | "```\n", 131 | "\n", 132 | "Edit the metadata of your post, using the [documentation](https://sourcethemes.com/academic/docs/managing-content) as a guide to the available options.\n", 133 | "\n", 134 | "To set a [featured image](https://sourcethemes.com/academic/docs/managing-content/#featured-image), place an image named `featured` into your post's folder.\n", 135 | "\n", 136 | "For other tips, such as using math, see the guide on [writing content with Academic](https://wowchemy.com/docs/content/writing-markdown-latex/). " 137 | ] 138 | }, 139 | { 140 | "cell_type": "markdown", 141 | "metadata": {}, 142 | "source": [ 143 | "## Convert notebook to Markdown" 144 | ] 145 | }, 146 | { 147 | "cell_type": "markdown", 148 | "metadata": {}, 149 | "source": [ 150 | "```bash\n", 151 | "jupyter nbconvert index.ipynb --to markdown --NbConvertApp.output_files_dir=.\n", 152 | "```" 153 | ] 154 | }, 155 | { 156 | "cell_type": "markdown", 157 | "metadata": {}, 158 | "source": [ 159 | "## Example\n", 160 | "\n", 161 | "This post was created with Jupyter. The orginal files can be found at https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter" 162 | ] 163 | } 164 | ], 165 | "metadata": { 166 | "kernelspec": { 167 | "display_name": "Python 3", 168 | "language": "python", 169 | "name": "python3" 170 | }, 171 | "language_info": { 172 | "codemirror_mode": { 173 | "name": "ipython", 174 | "version": 3 175 | }, 176 | "file_extension": ".py", 177 | "mimetype": "text/x-python", 178 | "name": "python", 179 | "nbconvert_exporter": "python", 180 | "pygments_lexer": "ipython3", 181 | "version": "3.7.3" 182 | } 183 | }, 184 | "nbformat": 4, 185 | "nbformat_minor": 4 186 | } 187 | --------------------------------------------------------------------------------