Last active
April 19, 2024 04:07
-
-
Save NdagiStanley/75b25c75c9df95217d67334421a46d6e to your computer and use it in GitHub Desktop.
Simple one-pager for https://circleci-gwp.github.io/profile/
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CircleCI Technical Authors Program</title> | |
<!-- CSS only --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" | |
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> | |
<link rel="icon" type="image/png" href="https://avatars3.githubusercontent.com/u/59034516" /> | |
</head> | |
<body> | |
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | |
<a class="navbar-brand">Web profile</a> | |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" | |
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | |
<ul class="navbar-nav mr-auto"> | |
<li class="nav-item active"> | |
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> | |
</li> | |
</ul> | |
</div> | |
</nav> | |
<div class="jumbotron"> | |
<h1 class="display-4">CircleCI Technical Authors Program</h1> | |
<p class="lead">A team of tutorial authors who write about their favorite technology topics for the CircleCI | |
blog.</p> | |
<a class="btn btn-primary btn-lg" href="https://circle.ci/3ahQxfu" target="_blank" role="button">Learn more</a> | |
</div> | |
<div class="list-group"> | |
<a href="https://circleci.com/blog/pushing-a-project-to-github/" target="_blank" | |
class="list-group-item list-group-item-action"> | |
<div class="d-flex w-100 justify-content-between"> | |
<h5 class="mb-1">Pushing a project to GitHub <span class="badge badge-secondary">Most | |
recent</span></h5> | |
<small>1 day ago</small> | |
</div> | |
<p class="mb-1">Learn how to push a project to GitHub.</p> | |
<small>tutorials, engineering</small> | |
</a> | |
<a href="https://circleci.com/blog/setting-up-continuous-integration-with-github/" target="_blank" | |
class="list-group-item list-group-item-action"> | |
<div class="d-flex w-100 justify-content-between"> | |
<h5 class="mb-1">Setting up continuous integration with CircleCI and GitHub</h5> | |
<small class="text-muted">3 days ago</small> | |
</div> | |
<p class="mb-1">Learn how to set up a continuous integration (CI) pipeline for a Python application using GitHub and CircleCI.</p> | |
<small>tutorials, engineering</small> | |
</a> | |
<a href="https://circleci.com/blog/publishing-a-python-package/" target="_blank" | |
class="list-group-item list-group-item-action"> | |
<div class="d-flex w-100 justify-content-between"> | |
<h5 class="mb-1">Publishing a Python package</h5> | |
<small class="text-muted">5 days ago</small> | |
</div> | |
<p class="mb-1">Learn how to use CircleCI in a delivery workflow for a Python package.</p> | |
<small>tutorials, engineering</small> | |
</a> | |
</div> | |
<br class="my-4"> | |
<div class="text-center"> | |
<a href="./index.html" download> | |
<button type="button" class="btn btn-outline-info">Download this one page web-profile</button> | |
</a> | |
</div> | |
<br class="my-4"> | |
<footer> | |
<div class="text-center"> | |
<img src="https://avatars3.githubusercontent.com/u/59034516?s=150&v=4" class="rounded" alt="CircleCI GWP logo"> | |
</div> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment