Skip to content

Commit e395257

Browse files
committed
add new template from evanca
0 parents  commit e395257

File tree

10 files changed

+217
-0
lines changed

10 files changed

+217
-0
lines changed

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org>

README.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## Developer Portfolio Landing Page Template
2+
3+
### Introduction
4+
5+
Use this template if you need a quick developer / data science portfolio! Based on a Minimal Jekyll theme for GitHub Pages.
6+
7+
<img src="images/demo.gif?raw=true"/>
8+
9+
### Installation
10+
11+
See full step by step tutorial [on Medium](https://medium.com/@evanca/set-up-your-portfolio-website-in-less-than-10-minutes-with-github-pages-d0efa8ff56fd).
12+
___
13+
14+
You can use the editor on GitHub to maintain and preview the content for your website in Markdown files.
15+
16+
Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.
17+
18+
### Markdown
19+
20+
Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
21+
22+
```markdown
23+
Syntax highlighted code block
24+
25+
# Header 1
26+
## Header 2
27+
### Header 3
28+
29+
- Bulleted
30+
- List
31+
32+
1. Numbered
33+
2. List
34+
35+
**Bold** and _Italic_ and `Code` text
36+
37+
[Link](url) and ![Image](src)
38+
```
39+
40+
For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).
41+
42+
### Roadmap
43+
44+
See the [open issues](https://github.com/evanca/machine-learning_optimizing-app-offers-with-starbucks/issues) for a list of proposed features (and known issues).
45+
___
46+
47+
### References
48+
49+
[1] Jekyll theme "Minimal" for GitHub Pages: https://github.com/pages-themes/minimal (CC0 1.0 Universal License)
50+
<br>[2] Dummy photo via: https://pixabay.com/photos/man-male-adult-person-caucasian-1209494/ (Pixabay License)
51+
<br>[3] Dummy thumbnail image created by rawpixel.com: https://www.freepik.com/free-vector/set-elements-infographic_2807573.htm (Standard Freepik License)

_config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
title: John Doe # your name (or website title) here
2+
logo: "/images/logo.png?raw=true" # your photo (or logo) here
3+
description: > # your text below (remove <br> elements if you don't need line breaks)
4+
First description
5+
<br><br>
6+
Second description
7+
<br><br>
8+
<a href="https://www.linkedin.com/in/example/">View My LinkedIn Profile</a>
9+
10+
theme: jekyll-theme-minimal
11+
google_analytics: UA-000000-0 # your Google Analytics tracking ID here

_layouts/default.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
<!--[if lt IE 9]>
11+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
12+
<![endif]-->
13+
</head>
14+
<body>
15+
<div class="wrapper">
16+
<header>
17+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
18+
19+
{% if site.logo %}
20+
<img src="{{site.logo | relative_url}}" alt="Logo" />
21+
{% endif %}
22+
23+
<p>{{ site.description | default: site.github.project_tagline }}</p>
24+
25+
{% if site.github.is_project_page %}
26+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p>
27+
{% endif %}
28+
29+
{% if site.github.is_user_page %}
30+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
31+
{% endif %}
32+
33+
{% if site.show_downloads %}
34+
<ul class="downloads">
35+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
36+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
37+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
38+
</ul>
39+
{% endif %}
40+
</header>
41+
<section>
42+
43+
{{ content }}
44+
45+
</section>
46+
<footer>
47+
{% if site.github.is_project_page %}
48+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
49+
{% endif %}
50+
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
51+
</footer>
52+
</div>
53+
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
54+
{% if site.google_analytics %}
55+
<script>
56+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
57+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
58+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
59+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
60+
ga('create', '{{ site.google_analytics }}', 'auto');
61+
ga('send', 'pageview');
62+
</script>
63+
{% endif %}
64+
</body>
65+
</html>

images/demo.gif

1.83 MB
Loading

images/dummy_thumbnail.jpg

138 KB
Loading

images/logo.png

286 KB
Loading

index.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
## Portfolio
2+
3+
---
4+
5+
### Category Name 1
6+
7+
[Project 1 Title](/sample_page)
8+
<img src="images/dummy_thumbnail.jpg?raw=true"/>
9+
10+
---
11+
[Project 2 Title](/pdf/sample_presentation.pdf)
12+
<img src="images/dummy_thumbnail.jpg?raw=true"/>
13+
14+
---
15+
[Project 3 Title](http://example.com/)
16+
<img src="images/dummy_thumbnail.jpg?raw=true"/>
17+
18+
---
19+
20+
### Category Name 2
21+
22+
- [Project 1 Title](http://example.com/)
23+
- [Project 2 Title](http://example.com/)
24+
- [Project 3 Title](http://example.com/)
25+
- [Project 4 Title](http://example.com/)
26+
- [Project 5 Title](http://example.com/)
27+
28+
---
29+
30+
31+
32+
33+
---
34+
<p style="font-size:11px">Page template forked from <a href="https://github.com/evanca/quick-portfolio">evanca</a></p>
35+
<!-- Remove above link if you don't want to attibute -->

pdf/sample_presentation.pdf

1.77 MB
Binary file not shown.

sample_page.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## This can be your internal website page / project page
2+
3+
**Project description:** Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4+
5+
### 1. Suggest hypotheses about the causes of observed phenomena
6+
7+
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
8+
9+
```javascript
10+
if (isAwesome){
11+
return true
12+
}
13+
```
14+
15+
### 2. Assess assumptions on which statistical inference will be based
16+
17+
```javascript
18+
if (isAwesome){
19+
return true
20+
}
21+
```
22+
23+
### 3. Support the selection of appropriate statistical tools and techniques
24+
25+
<img src="images/dummy_thumbnail.jpg?raw=true"/>
26+
27+
### 4. Provide a basis for further data collection through surveys or experiments
28+
29+
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
30+
31+
For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).

0 commit comments

Comments
 (0)