-
Notifications
You must be signed in to change notification settings - Fork 0
feat: introduce the team #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a5f5eaa
feat: introduce the team
sassman fdc9a33
chore: incorporate jonas and ludwigs suggestions
sassman 0e19c17
feat: add the linked in group to the footer and the about links section
sassman 04f6551
chore: ensure the gh pages deployment only runs on main
sassman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| {% set class = class | default(value="") %} | ||
| {% set variant = variant | default(value="primary") %} | ||
| {% set size = size | default(value="md") %} | ||
|
|
||
| {% if variant == "primary" %} | ||
| {% set btn_classes = "bg-rust-red text-white hover:bg-rust-red/90" %} | ||
| {% elif variant == "secondary" %} | ||
| {% set btn_classes = "border border-gray-300 hover:bg-yellow-50 hover:border-rust-yellow" %} | ||
| {% else %} | ||
| {% set btn_classes = variant %} | ||
| {% endif %} | ||
|
|
||
| {% if size == "sm" %} | ||
| {% set size_classes = "px-4 py-2 text-sm" %} | ||
| {% elif size == "lg" %} | ||
| {% set size_classes = "px-6 py-3" %} | ||
| {% else %} | ||
| {% set size_classes = "px-4 py-2" %} | ||
| {% endif %} | ||
|
|
||
| <a href="{{ url }}" | ||
| class="btn inline-block {{ size_classes }} {{ btn_classes }} rounded font-sans font-medium transition-colors {{ class }}" | ||
| {% if target %}target="{{ target }}"{% endif %} | ||
| {% if rel %}rel="{{ rel }}"{% endif %}>{{ text }}</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| <a href="{{ config.extra.website_github }}" target="_blank" rel="noopener noreferrer" | ||
| >{{ text | default(value="website @ github.com") }}</a | ||
| <a href="{{ config.extra.github_org }}" target="_blank" rel="noopener noreferrer" | ||
| >{{ text | default(value="rust munich @ github") }}</a | ||
| > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| {% if name == "location" %} | ||
| <svg class="w-4 h-4 mr-1" fill="currentColor" viewBox="0 0 20 20"> | ||
| <path fill-rule="evenodd" d="M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z" clip-rule="evenodd"></path> | ||
| </svg> | ||
| {% elif name == "job-type" %} | ||
| <svg class="w-4 h-4 mr-1" fill="currentColor" viewBox="0 0 20 20"> | ||
| <path fill-rule="evenodd" d="M6 6V5a3 3 0 013-3h2a3 3 0 013 3v1h2a2 2 0 012 2v3.57A22.952 22.952 0 0110 13a22.95 22.95 0 01-8-1.43V8a2 2 0 012-2h2zm2-1a1 1 0 011-1h2a1 1 0 011 1v1H8V5zm1 5a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1z" clip-rule="evenodd"></path> | ||
| </svg> | ||
| {% elif name == "remote" %} | ||
| <svg class="w-4 h-4 mr-1" fill="currentColor" viewBox="0 0 20 20"> | ||
| <path d="M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1v-6zM14 9a1 1 0 00-1 1v6a1 1 0 001 1h2a1 1 0 001-1v-6a1 1 0 00-1-1h-2z"></path> | ||
| </svg> | ||
| {% elif name == "experience" %} | ||
| <svg class="w-4 h-4 mr-1" fill="currentColor" viewBox="0 0 20 20"> | ||
| <path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path> | ||
| </svg> | ||
| {% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| <a href="{{ config.extra.linkedin }}" target="_blank" rel="noopener noreferrer" | ||
| >{{ text | default(value="rust munich @ linkedin") }}</a | ||
| > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| <a href="{{ config.extra.twitter }}" target="_blank" rel="noopener noreferrer" | ||
| >{{ text | default(value="rust munich @ twitter") }}</a | ||
| > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| <a href="{{ config.extra.youtube }}" target="_blank" rel="noopener noreferrer" | ||
| >{{ text | default(value="rust munich @ youtube") }}</a | ||
| > |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.