Skip to content
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

Update index.html #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 36 additions & 40 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,50 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{ .Title }}</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css"
/>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
<h1>{{ .Title }}</h1>

<h1>Pull Request Merge Card</h1>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ .Title }}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" />
<link rel="stylesheet" href="/style.css" />
<meta name="description" content="Pull Request Merge Card" />
<meta name="keywords" content="pull request, merge card, github" />
</head>
<body>
<header>
<h1>{{ .Title }}</h1>
</header>
<main>
<section>
<h2>Pull Request Merge Card</h2>
<div class="row">
{{ range (where .Site.RegularPages "Section" "participant") }}
<div class="col-12 col-md-4 mb-4">
<div class="speakers animate">
<div class="top">
<div class="image">
<img src="/images/{{ .Params.image }}" />
</div>
<div class="name">
{{ .Params.name }}
</div>
<div class="college name">
{{ .Params.institution }}
</div>
<article class="col-12 col-md-4 mb-4">
<div class="speaker">
<div class="speaker-image">
<img src="/images/{{ .Params.image }}" alt="{{ .Params.name }}" />
</div>
<div class="follower">
<a href="https://github.com/{{ .Params.github }}" target="_blank"
><i class="fab fa-github"></i
></a>
<div class="speaker-info">
<h3 class="speaker-name">{{ .Params.name }}</h3>
<p class="speaker-institution">{{ .Params.institution }}</p>
<p class="speaker-github">
<a href="https://github.com/{{ .Params.github }}" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
</p>
</div>
</div>
</div>
</article>
{{ end }}
</div>
</div>
<!-- partial -->
</body>
</section>
</main>
<footer>
<!-- Add footer content here -->
</footer>
</body>
</html>