move docs around, add likebutton - #5
Conversation
There was a problem hiding this comment.
Pull request overview
This PR reorganizes documentation files and adds a "likebutton" component. The changes involve moving Bootstrap documentation templates and HTML files into a new directory structure under docs/docs/likebutton/docs/.
Key Changes
- Created new directory structure for likebutton documentation
- Added multiple Mustache template files for various Bootstrap documentation pages
- Added compiled HTML documentation files for the likebutton component
- Includes templates for index, examples, download, components, and base-css pages
Reviewed changes
Copilot reviewed 57 out of 144 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/docs/likebutton/docs/templates/pages/index.mustache | Bootstrap homepage template with marketing content and social integration |
| docs/docs/likebutton/docs/templates/pages/examples.mustache | Template showcasing Bootstrap example layouts |
| docs/docs/likebutton/docs/templates/pages/download.mustache | Customization and download page template with component selection |
| docs/docs/likebutton/docs/templates/pages/components.mustache | Comprehensive components documentation template |
| docs/docs/likebutton/docs/templates/pages/base-css.mustache | Base CSS documentation template covering typography, forms, and buttons |
| docs/docs/likebutton/docs/templates/layout.mustache | Master layout template for documentation pages |
| docs/docs/likebutton/docs/scaffolding.html | Compiled HTML for scaffolding documentation |
| docs/docs/likebutton/docs/less.html | Compiled HTML for LESS documentation |
| docs/docs/likebutton/docs/index.html | Compiled homepage HTML |
| docs/docs/likebutton/docs/examples/starter-template.html | Starter template example HTML |
| docs/docs/likebutton/docs/examples/hero.html | Hero unit example HTML |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <div class="navbar navbar-fixed-top"> | ||
| <div class="navbar-inner"> | ||
| <div class="container"> | ||
| <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> |
There was a problem hiding this comment.
Missing space between attribute and class name. Should be type="button" class="btn btn-navbar" with a space after the closing quote of type="button".
| </tr> | ||
| <tr> | ||
| <td><code>@heroUnitLeadColor</code></td> | ||
| <td><code>inhereit</code></td> |
There was a problem hiding this comment.
Typo in code value. "inhereit" should be "inherit".
| <td><code>inhereit</code></td> | |
| <td><code>inherit</code></td> |
| <td><code>@@dropdownDividerTop</code></td> | ||
| <td><code>#e5e5e5</code></td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>@@dropdownDividerBottom</code></td> |
There was a problem hiding this comment.
Variable name has double @@ prefix. Should be single @ like other LESS variables: @dropdownDividerTop.
| <td><code>@@dropdownDividerTop</code></td> | |
| <td><code>#e5e5e5</code></td> | |
| </tr> | |
| <tr> | |
| <td><code>@@dropdownDividerBottom</code></td> | |
| <td><code>@dropdownDividerTop</code></td> | |
| <td><code>#e5e5e5</code></td> | |
| </tr> | |
| <tr> | |
| <td><code>@dropdownDividerBottom</code></td> |
| <td><code>@@dropdownDividerTop</code></td> | ||
| <td><code>#e5e5e5</code></td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>@@dropdownDividerBottom</code></td> |
There was a problem hiding this comment.
Variable name has double @@ prefix. Should be single @ like other LESS variables: @dropdownDividerBottom.
| <td><code>@@dropdownDividerTop</code></td> | |
| <td><code>#e5e5e5</code></td> | |
| </tr> | |
| <tr> | |
| <td><code>@@dropdownDividerBottom</code></td> | |
| <td><code>@dropdownDividerTop</code></td> | |
| <td><code>#e5e5e5</code></td> | |
| </tr> | |
| <tr> | |
| <td><code>@dropdownDividerBottom</code></td> |
| <div class="navbar navbar-fixed-top"> | ||
| <div class="navbar-inner"> | ||
| <div class="container"> | ||
| <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> |
There was a problem hiding this comment.
Missing space between attribute and class name. Should be type="button" class="btn btn-navbar" with a space after the closing quote of type="button".
| <div class="navbar navbar-fixed-top"> | ||
| <div class="navbar-inner"> | ||
| <div class="container"> | ||
| <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> |
There was a problem hiding this comment.
Missing space between attribute and class name. Should be type="button" class="btn btn-navbar" with a space after the closing quote of type="button".
No description provided.