Skip to content
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
73 changes: 73 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STEPS</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
</head>

<body style="background-color: #0d1117; display: flex; flex-direction: column; min-height: 100vh;">
<div class="d-flex flex-column text-light p-5 flex-grow-1">
<div class="container-fluid row">
<div class="col-lg-12 text-center my-5">
<h3>Multilanguage README Pattern</h3>
<p class="mt-1"><i class="fab fa-github"></i> GitHub Profile: <a href="https://github.com/jonatasemidio">@jonatasemidio</a></p>
</div>
</div>
<div class="container-fluid row">
<div class=" offset-lg-2 col-lg-4">
<h1 class="m-3">STEPS (English)</h1>
<hr class="border border-2 mx-3">
</hr>
<ol>
<li>Create a README.md file in a different language</li>
<li>Name of the readme file must follow the w3c language pattern (README..md). Ex
README.pt-br.md</li>
<li>Link in the head of the original readme file and a link back in the current one</li>
<li>Use to be nice the shields.io style</li>
</ol>
</div>
<div class="col-lg-4">
<h1 class="m-3">Pasos (Español)</h1>
<hr class="border border-2 mx-3">
</hr>
<ol>
<li>Crear un archivo README.md en un idioma diferente</li>
<li>El nombre del archivo readme debe seguir el patrón de idioma w3c (README..md). Ej.
README.pt-br.md</li>
<li>Enlazar en el encabezado del archivo readme original y un enlace de vuelta en el actual</li>
<li>Usar el estilo de shields.io para ser agradable</li>
</ol>
</div>
</div>
<div class="container-fluid row">
<div class="my-3 offset-lg-2 col-lg-8">
<h3 class="m-3">Links</h3>
<hr class="border border-1 mx-3">
</hr>
<ul>
<li><a href="https://www.w3.org/International/articles/language-tags/">Language TAGs - W3C</a></li>
<li><a href="https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry">Language
Subtag - IANA</a></li>
<li>Interesting samples: <a
href="https://github.com/tiimgreen/github-cheat-sheet">github-cheat-sheet</a>,
<a href="https://github.com/jonatasemidio/multilanguage-readme-pattern">multilanguage-readme-pattern</a>
</li>
<li><a
href="https://github.com/jonatasemidio/multilanguage-readme-pattern/blob/master/STEPS.md#:~:text=How%20to%20create%20Lang%20Shields">How
to create Lang Shields</a></li>
</ul>
</div>
</div>
<footer>
<div class="container-fluid row mt-5">
<p class="mt-5 col-lg-12 text-center">Designed by <a href="https://github.com/adrianssanz" target="_blank">github/adrianssanz</a> using HTML and Bootstrap.</p>
</div>
</footer>
</div>
</body>

</html>