Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Learning Java 2825378 | 544 | 8 months ago | 34 | other | ||||||
This repository is for the Linkedin Learning course: Learning Java | ||||||||||
Llvd | 213 | 6 months ago | 32 | January 02, 2022 | 2 | mit | Python | |||
Linkedin Learning Video Downloader | ||||||||||
Angular Essential Training | 207 | 5 months ago | 45 | mit | TypeScript | |||||
Angular2 Essential Training | 190 | 4 years ago | 8 | mit | TypeScript | |||||
The repository for the project code for my course Angular Essential Training | ||||||||||
Css Essential Training | 177 | 9 months ago | HTML | |||||||
Exercise files for the CSS Essential Training course on LinkedIn Learning and Lynda.com | ||||||||||
Js Ts Monorepos | 174 | a year ago | 5 | bsd-2-clause | TypeScript | |||||
Mike's JS/TS Monorepos Course | ||||||||||
Sassessentials | 173 | 2 years ago | SCSS | |||||||
Repository for my tutorial course: Sass Essential Training on LinkedIn Learning and Lynda.com. | ||||||||||
Bootstrap4 | 145 | 2 years ago | other | HTML | ||||||
Repository for my tutorial course: Bootstrap 4 Essential Training on LinkedIn Learning and Lynda.com. | ||||||||||
Advanced Terraform 2823489 | 144 | 5 months ago | 13 | other | HCL | |||||
Advanced Terraform | ||||||||||
Expressjs | 136 | 5 years ago | 5 | HTML | ||||||
This is the repository for my course, Building a Website with Node.js and Express.js on LinkedIn Learning and Lynda.com. |
This repository is a template for building responsive websites for Bootstrap 4. It provides a quick template for getting started with different layouts. It's based on a course I built for LinkedIn learning called Bootstrap 4 Layouts: Responsive Single-Page Design. If you want to see a demo of the layouts, check out: raybo.org/bootstrap4layouts/
There are several different layouts available:
Each is designed to showcase a different aspect of how Bootstrap Layouts work. Here's a code sample from the Floater Layout:
<article id="page-floater" class="page-section vertical-padding">
<section class="layout-floater container text-reverse">
<div class="row align-items-center justify-content-center">
<div class="col-8 col-md-4 img-container">
<img class="layout-image img-fluid" src="http://planetoftheweb.com/i/phone.svg" alt="Photo Sample">
</div>
<div class="col-10 col-md-6 align-self-center">
<div class="my-5 text-center text-md-left pl-md-5">
<h2 class="layout-title">Floater Title</h2>
<p class="layout-text ">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officiis fuga ex delectus sunt natus doloremque praesentium
aspernatur, totam tempora officia, sed fugit? Libero voluptatem nulla mollitia, amet dolor iste magni.</p>
</div>
</div>
</div>
</section>
</article>
Each layout is in it's own <article>
tag, which begins a layout and has an id with the page-
prefix.
Most layouts (not the floater layout) also have an optional <header>
. They sholuld be self explanatory.
I'd love to see some Pull Requests with additional layouts.