moved orbit in from submodule
This commit is contained in:
parent
19da32c6dc
commit
6e9ed98e78
227 changed files with 44365 additions and 0 deletions
0
themes/orbit/layouts/404.html
Normal file
0
themes/orbit/layouts/404.html
Normal file
0
themes/orbit/layouts/_default/list.html
Normal file
0
themes/orbit/layouts/_default/list.html
Normal file
0
themes/orbit/layouts/_default/single.html
Normal file
0
themes/orbit/layouts/_default/single.html
Normal file
37
themes/orbit/layouts/index.html
Normal file
37
themes/orbit/layouts/index.html
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
{{ partial "lang.html" . }}
|
||||
<head>
|
||||
{{ partial "head.html" . }}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
||||
{{ partial "sidebar.html" . }}
|
||||
|
||||
<div class="main-wrapper">
|
||||
|
||||
{{ if .Site.Params.summary.enable }}
|
||||
{{ partial "summary.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.experiences.enable }}
|
||||
{{ partial "experiences.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.projects.enable }}
|
||||
{{ partial "projects.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.skills.enable }}
|
||||
{{ partial "skills.html" . }}
|
||||
{{ end }}
|
||||
|
||||
</div><!--//main-body-->
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
{{ partial "scripts.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
7
themes/orbit/layouts/partials/contact.html
Normal file
7
themes/orbit/layouts/partials/contact.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<div class="contact-container container-block">
|
||||
<ul class="list-unstyled contact-list">
|
||||
{{ range .Site.Params.contact.list }}
|
||||
<li class="{{ .class }}"><i class="fa {{ .icon }}"></i><a href="{{ .url }}">{{ .title }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div><!--//contact-container-->
|
||||
10
themes/orbit/layouts/partials/education.html
Normal file
10
themes/orbit/layouts/partials/education.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<div class="education-container container-block">
|
||||
<h2 class="container-block-title">{{ i18n "education" }}</h2>
|
||||
{{ range .Site.Params.education.list }}
|
||||
<div class="item">
|
||||
<h4 class="degree">{{ .degree }}</h4>
|
||||
<h5 class="meta">{{ .college }}</h5>
|
||||
<div class="time">{{ .dates }}</div>
|
||||
</div><!--//item-->
|
||||
{{ end }}
|
||||
</div><!--//education-container-->
|
||||
19
themes/orbit/layouts/partials/experiences.html
Normal file
19
themes/orbit/layouts/partials/experiences.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<section class="section experiences-section">
|
||||
<h2 class="section-title"><i class="fa {{ .Site.Params.experiences.icon }}"></i>{{ i18n "experiences" }}</h2>
|
||||
|
||||
{{ range .Site.Params.jobs.list }}
|
||||
<div class="item">
|
||||
<div class="meta">
|
||||
<div class="upper-row">
|
||||
<h3 class="job-title">{{ .position }}</h3>
|
||||
<div class="time">{{ .dates }}</div>
|
||||
</div><!--//upper-row-->
|
||||
<div class="company">{{ .company }}</div>
|
||||
</div><!--//meta-->
|
||||
<div class="details">
|
||||
<p>{{ with .details }}{{ . | markdownify }}{{ end }}</p>
|
||||
</div><!--//details-->
|
||||
</div><!--//item-->
|
||||
{{ end }}
|
||||
|
||||
</section><!--//section-->
|
||||
7
themes/orbit/layouts/partials/footer.html
Normal file
7
themes/orbit/layouts/partials/footer.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<footer class="footer">
|
||||
<div class="text-center">
|
||||
<!--/* This template is released under the Creative Commons Attribution 3.0 License. Please keep the attribution link below when using for your own project. Thank you for your support. :) If you'd like to use the template without the attribution, you can check out other license options via our website: themes.3rdwavemedia.com */-->
|
||||
<small class="copyright">Designed with <i class="fa fa-heart"></i> by <a href="http://themes.3rdwavemedia.com" target="_blank">Xiaoying Riley</a> for developers</small><br>
|
||||
<small class="copyright">{{ now.Year }} © {{ with .Site.Params.footer.copyright }}{{ . | markdownify }}{{ else }}Ported for Hugo by <a href="https://github.com/aerohub" target="_blank">Pavel Kanyshev</a>{{ end }}</small>
|
||||
</div><!--//container-->
|
||||
</footer><!--//footer-->
|
||||
22
themes/orbit/layouts/partials/head.html
Normal file
22
themes/orbit/layouts/partials/head.html
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<title>{{ .Site.Params.title }}</title>
|
||||
<!-- Meta -->
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
<meta name="author" content="{{ .Site.Params.author }}">
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,400italic,300italic,300,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
|
||||
<!-- Global CSS -->
|
||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/plugins/bootstrap/css/bootstrap.min.css">
|
||||
<!-- Plugins CSS -->
|
||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/plugins/font-awesome/css/font-awesome.css">
|
||||
|
||||
<!-- Theme CSS -->
|
||||
<link id="theme-style" rel="stylesheet" href="{{ .Site.BaseURL }}assets/css/{{ .Site.Params.styles }}">
|
||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
{{ template "_internal/google_analytics_async.html" . }}
|
||||
8
themes/orbit/layouts/partials/interests.html
Normal file
8
themes/orbit/layouts/partials/interests.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<div class="interests-container container-block">
|
||||
<h2 class="container-block-title">{{ i18n "interests" }}</h2>
|
||||
<ul class="list-unstyled interests-list">
|
||||
{{ range .Site.Params.interests.list }}
|
||||
<li>{{ .interest }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div><!--//interests-->
|
||||
3
themes/orbit/layouts/partials/lang.html
Normal file
3
themes/orbit/layouts/partials/lang.html
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<!--[if IE 8]> <html lang="{{ .Site.Language }}" class="ie8"> <![endif]-->
|
||||
<!--[if IE 9]> <html lang="{{ .Site.Language }}" class="ie9"> <![endif]-->
|
||||
<!--[if !IE]><!--> <html lang="{{ .Site.Language }}"> <!--<![endif]-->
|
||||
8
themes/orbit/layouts/partials/language.html
Normal file
8
themes/orbit/layouts/partials/language.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<div class="language-container container-block">
|
||||
<h2 class="container-block-title">{{ i18n "language" }}</h2>
|
||||
<ul class="list-unstyled interests-list">
|
||||
{{ range .Site.Params.language.list }}
|
||||
<li>{{ .language }} <span class="lang-desc">({{ .level }})</span></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div><!--//language-->
|
||||
5
themes/orbit/layouts/partials/profile.html
Normal file
5
themes/orbit/layouts/partials/profile.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<div class="profile-container">
|
||||
<img class="profile img-circle" src="{{ .Site.BaseURL }}assets/images/{{ .Site.Params.profile.avatar }}" alt="" />
|
||||
<h1 class="name">{{ .Site.Params.profile.name }}</h1>
|
||||
<h3 class="tagline">{{ .Site.Params.profile.tagline }}</h3>
|
||||
</div><!--//profile-container-->
|
||||
11
themes/orbit/layouts/partials/projects.html
Normal file
11
themes/orbit/layouts/partials/projects.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<section class="section projects-section">
|
||||
<h2 class="section-title"><i class="fa {{ .Site.Params.projects.icon }}"></i>{{ i18n "projects" }}</h2>
|
||||
<div class="intro">
|
||||
<p>{{ with .Site.Params.projects.intro }}{{ . | markdownify }}{{ end }}</p>
|
||||
</div><!--//intro-->
|
||||
{{ range .Site.Params.projects.list }}
|
||||
<div class="item">
|
||||
<span class="project-title"><a href="{{ .url }}">{{ .title }}</a></span> - <span class="project-tagline">{{ with .tagline }}{{ . | markdownify }}{{ end }}</span>
|
||||
</div><!--//item-->
|
||||
{{ end }}
|
||||
</section><!--//section-->
|
||||
5
themes/orbit/layouts/partials/scripts.html
Normal file
5
themes/orbit/layouts/partials/scripts.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<!-- Javascript -->
|
||||
<script type="text/javascript" src="{{ .Site.BaseURL }}assets/plugins/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="{{ .Site.BaseURL }}assets/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||||
<!-- custom js -->
|
||||
<script type="text/javascript" src="{{ .Site.BaseURL }}assets/js/main.js"></script>
|
||||
25
themes/orbit/layouts/partials/sidebar.html
Normal file
25
themes/orbit/layouts/partials/sidebar.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<div class="sidebar-wrapper">
|
||||
|
||||
{{ partial "profile.html" . }}
|
||||
|
||||
{{ if .IsTranslated }}
|
||||
{{ partial "translate.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.contact.enable }}
|
||||
{{ partial "contact.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.education.enable }}
|
||||
{{ partial "education.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.language.enable }}
|
||||
{{ partial "language.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.interests.enable }}
|
||||
{{ partial "interests.html" . }}
|
||||
{{ end }}
|
||||
|
||||
</div><!--//sidebar-wrapper-->
|
||||
14
themes/orbit/layouts/partials/skills.html
Normal file
14
themes/orbit/layouts/partials/skills.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<section class="skills-section section">
|
||||
<h2 class="section-title"><i class="fa {{ .Site.Params.skills.icon }}"></i>{{ i18n "skills" }}</h2>
|
||||
<div class="skillset">
|
||||
{{ range .Site.Params.skills.list }}
|
||||
<div class="item">
|
||||
<h3 class="level-title">{{ .skill }}</h3>
|
||||
<div class="level-bar">
|
||||
<div class="level-bar-inner" data-level="{{ .level }}">
|
||||
</div>
|
||||
</div><!--//level-bar-->
|
||||
</div><!--//item-->
|
||||
{{ end }}
|
||||
</div>
|
||||
</section><!--//skills-section-->
|
||||
6
themes/orbit/layouts/partials/summary.html
Normal file
6
themes/orbit/layouts/partials/summary.html
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<section class="section summary-section">
|
||||
<h2 class="section-title"><i class="fa {{ .Site.Params.summary.icon }}"></i>{{ i18n "summary" }}</h2>
|
||||
<div class="summary">
|
||||
<p>{{ with .Site.Params.summary.summary }}{{ . | markdownify }}{{ end }}</p>
|
||||
</div><!--//summary-->
|
||||
</section><!--//section-->
|
||||
5
themes/orbit/layouts/partials/translate.html
Normal file
5
themes/orbit/layouts/partials/translate.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<div class="profile-container">
|
||||
{{ range .Translations }}
|
||||
<a class="btn btn-translate" href="{{ .Permalink }}">{{upper .Lang }}</a>
|
||||
{{ end }}
|
||||
</div><!--//profile-container-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue