时间:2023-07-06 01:33:01 | 来源:网站运营
时间:2023-07-06 01:33:01 来源:网站运营
用 Github Pages 制作个人主页的一点感悟:<!doctype html><html> <head> <script src="https://use.fontawesome.com/baff6f55f5.js"></script> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <title>Tyler Ransom by tyleransom</title> <link rel="stylesheet" href="stylesheets/styles.css"> <link rel="stylesheet" href="stylesheets/github-light.css"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-29643011-3', 'auto'); ga('send', 'pageview'); </script> <!-- For all browsers --> <link rel="stylesheet" href="assets/css/academicons.min.css"/> <link rel="stylesheet" href="assets/css/academicons.css"/> </head>
以上这部分没啥可动的,基本都在表达怎样引用网上或已下载到 assets、stylesheet 中的文件,算作主题模板部分吧。其中 title 就是别人打开你网页时小标签显示的名字,你修改成你的名字(加机构),<body> <div class="wrapper"> <header> <h1>Tyler Ransom</h1> <p>Assistant Professor of Economics<br>University of Oklahoma</p> <p>Research Affiliate<br><a href="http://legacy.iza.org/en/webcontent/personnel/photos/index_html?key=24155">Institute for the Study of Labor (IZA)</a></p> <h3><p class="view"><a href="https://tyleransom.github.io/">Home</a></p></h3> <h3><p class="view"><a href="https://tyleransom.github.io/research.html">Research</a></p></h3> <h3><p class="view"><a href="https://tyleransom.github.io/research/CV.pdf">CV</a></p></h3> <h3><p class="view"><a href="https://tyleransom.github.io/code.html">Code</a></p></h3> <h3><p class="view"><a href="https://tyleransom.github.io/teaching.html">Teaching</a></p></h3> <h3><p class="view"><a href="https://tyleransom.github.io/personal.html">Personal</a></p></h3> <p class="view"><b>Social</b><br> <a href="mailto:ransom@ou.edu" class="author-social" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a><br> <a href="https://scholar.google.com/citations?user=eohlTTcAAAAJ&hl=en" target="_blank"><i class="ai ai-fw ai-google-scholar-square"></i> Scholar</a><br> <a href="http://ideas.repec.org/f/pra541.html"><i class="fa fa-fw fa-share-alt-square"></i> RePEc</a><br> <a href="http://github.com/tyleransom"><i class="fa fa-fw fa-github-square"></i> GitHub</a><br> <a href="http://twitter.com/tyleransom" class="author-social" target="_blank"><i class="fa fa-fw fa-twitter-square"></i> Twitter</a><br> <a href="http://linkedin.com/in/tyleransom" class="author-social" target="_blank"><i class="fa fa-fw fa-linkedin-square"></i> LinkedIn</a><br> <p><b>Contact:</b><br>Department of Economics<br>University of Oklahoma<br>322 CCD1, 308 Cate Center Drive<br>Norman, OK 73072</p> </header>
这一部分为主体部分,包括边框和导航栏等,然后修改各个超链接,例如邮箱、社交账号、学术主页、联系方式, 依照他的内容,替换成自己的即可;<a href=" ">
)也需要替换到自己的 github.io 域名下。<section> <h3> <img src="IMG_2409 edit pro photo square small.jpg" height="250" width="250"></h3> <p>I am currently an Assistant Professor of <a href="http://cas.ou.edu/economics">Economics</a> at the <a href="http://www.ou.edu/">University of Oklahoma</a> and Research Affiliate at the <a href="https://www.iza.org/">Institute for the Study of Labor (IZA)</a>. I graduated with a PhD in <a href="http://econ.duke.edu">Economics</a> from <a href="http://www.duke.edu">Duke University</a> in May 2015.</p> <p>My research interests include labor economics, urban economics, the economics of education, and applications of machine learning.</p> </section> <footer> <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> </footer> </div> <script src="javascripts/scale.fix.js"></script> </body></html>
这一部分则是主页页面的正文内容了, 主页一般就 say hello, 参考各大 PhD Candidate 写自己的就好关键词:感悟