Skip to content

Commit 61c2790

Browse files
committed
Revert "deleted about, about einstein, and repositories. tried to make index starting page"
This reverts commit fd25012.
1 parent 84b0f69 commit 61c2790

File tree

4 files changed

+80
-1
lines changed

4 files changed

+80
-1
lines changed

_pages/about.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: about
3+
title: about
4+
permalink: /
5+
subtitle: <a href='#'>Affiliations</a>. Address. Contacts. Motto. Etc.
6+
7+
profile:
8+
align: right
9+
image: prof_pic.jpg
10+
image_circular: false # crops the image to make it circular
11+
more_info: >
12+
<p>555 your office number</p>
13+
<p>123 your address street</p>
14+
<p>Your City, State 12345</p>
15+
16+
news: true # includes a list of news items
17+
selected_papers: true # includes a list of papers marked as "selected={true}"
18+
social: true # includes social icons at the bottom of the page
19+
---
20+
21+
Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com). You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.
22+
23+
Put your address / P.O. box / other info right below your picture. You can also disable any of these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically.
24+
25+
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](https://fontawesome.com/) and [Academicons](https://jpswalsh.github.io/academicons/), like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them.

_pages/about_einstein.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com). You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.
2+
3+
Put your address / P.O. box / other info right below your picture. You can also disable any these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically.
4+
5+
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](https://fontawesome.com/) and [Academicons](https://jpswalsh.github.io/academicons/), like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them.

_pages/index.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
22
layout: page
33
title: about
4-
permalink: /
4+
permalink: /about/
5+
nav: true
6+
nav_order: 9
57
---
68
Manastash Ridge Observatory (MRO) is used by the University of Washington Department of Astronomy for undergraduate education. It is not typically open to the public, in part due to its location on a ridge above Ellensburg, Washington. This site chosen in the 1970s to give UW students access to the dry and dark skies available on the eastern slopes of the Cascades. Owing to its remote location, the observatory was built with its own water supply and accommodations sufficient for groups of students to stay for multiple night observing runs.
79

_pages/repositories.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
layout: page
3+
permalink: /repositories/
4+
title: repositories
5+
description: Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories.
6+
nav: true
7+
nav_order: 4
8+
---
9+
10+
{% if site.data.repositories.github_users %}
11+
12+
## GitHub users
13+
14+
<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
15+
{% for user in site.data.repositories.github_users %}
16+
{% include repository/repo_user.liquid username=user %}
17+
{% endfor %}
18+
</div>
19+
20+
---
21+
22+
{% if site.repo_trophies.enabled %}
23+
{% for user in site.data.repositories.github_users %}
24+
{% if site.data.repositories.github_users.size > 1 %}
25+
26+
<h4>{{ user }}</h4>
27+
{% endif %}
28+
<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
29+
{% include repository/repo_trophies.liquid username=user %}
30+
</div>
31+
32+
---
33+
34+
{% endfor %}
35+
{% endif %}
36+
{% endif %}
37+
38+
{% if site.data.repositories.github_repos %}
39+
40+
## GitHub Repositories
41+
42+
<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
43+
{% for repo in site.data.repositories.github_repos %}
44+
{% include repository/repo.liquid repository=repo %}
45+
{% endfor %}
46+
</div>
47+
{% endif %}

0 commit comments

Comments
 (0)