-
-
Notifications
You must be signed in to change notification settings - Fork 116
docs: fix badges and links #487
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
Open
jankapunkt
wants to merge
2
commits into
master
Choose a base branch
from
docs/fix-badges-links
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,11 +2,8 @@ | |
| <img src="https://cdn.rawgit.com/meteor/blaze/master/images/logo.svg" width="260" /> | ||
| </p> | ||
| <p align="center"> | ||
| <a href="http://slack.blazejs.org" target="_blank"> | ||
| <img src="http://slack.blazejs.org/badge.svg"> | ||
| </a> | ||
| <a href="https://circleci.com/gh/meteor/blaze" target="_blank"> | ||
| <img src="https://circleci.com/gh/meteor/blaze.svg?style=shield"> | ||
| <a href="#Blaze Tests" href="https://github.com/meteor/blaze/actions/workflows/blaze-tests.yml"> | ||
| <img src="https://github.com/meteor/blaze/actions/workflows/blaze-tests.yml/badge.svg"> | ||
| </a> | ||
| <a href="#backers"> | ||
| <img src="https://opencollective.com/blaze/backers/badge.svg"> | ||
|
|
@@ -18,7 +15,7 @@ | |
|
|
||
| ## What is Blaze? | ||
|
|
||
| Blaze is a powerful library for creating user interfaces by writing reactive HTML templates. Compared to using a combination of traditional templates and jQuery, Blaze eliminates the need for all the "update logic" in your app that listens for data changes and manipulates the DOM. Instead, familiar template directives like ``{{#if}}`` and ``{{#each}}`` integrate with [Tracker's](https://github.com/meteor/meteor/tree/master/packages/tracker) "transparent reactivity" and [Minimongo's](https://meteor.com/mini-databases) database cursors so that the DOM updates automatically. | ||
| Blaze is a powerful library for creating user interfaces by writing reactive HTML templates. Compared to using a combination of traditional templates and jQuery, Blaze eliminates the need for all the "update logic" in your app that listens for data changes and manipulates the DOM. Instead, familiar template directives like ``{{#if}}`` and ``{{#each}}`` integrate with [Tracker's](https://github.com/meteor/meteor/tree/master/packages/tracker) "transparent reactivity" and [Minimongo's](https://github.com/meteor/meteor/tree/devel/packages/minimongo) database cursors so that the DOM updates automatically. | ||
|
|
||
| ### Blaze has two major parts: | ||
|
|
||
|
|
@@ -30,17 +27,17 @@ Check our [Overview](OVERVIEW.md) to learn more. | |
|
|
||
| ## Quick Start | ||
|
|
||
| Blaze is a [Meteor](http://meteor.com/)-only package for now. Soon we will have Blaze on npm so you can use it in your stack. | ||
| Blaze is a [Meteor](http://meteor.com/)-only package for now. In the future, we intend have Blaze on npm so you can use it in your stack. | ||
|
||
|
|
||
| Each new Meteor project you create has Blaze included (the `blaze-html-templates` package). | ||
| Each new Meteor project you create using the `--blaze` flag has Blaze included (via the `blaze-html-templates` package). | ||
|
|
||
| ## Get involved | ||
|
|
||
| We'd love for you to help us build Blaze. If you'd like to be a contributor, | ||
| check out our [contributing guide](/CONTRIBUTING.md). | ||
|
|
||
| Also, to stay up-to-date on all Blaze related news and the community you should | ||
| definitely [join us on Slack](http://slack.blazejs.org). | ||
| definitely [join us on the Meteor forums](http://forums.meteor.com). | ||
|
|
||
| See [open issues](https://github.com/meteor/blaze/issues) and consider helping with any of the tasks. Those [labeled "contributions welcome"](https://github.com/meteor/blaze/issues?q=is%3Aopen+is%3Aissue+label%3A%22contributions+welcome%22) are probably a good start. We have issues [organized into GitHub projects](https://github.com/meteor/blaze/projects) for a better overview as well. And the current [roadmap](https://github.com/meteor/blaze/milestones) shows the issues we need help with for the next release. | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The anchor tag has two href attributes. The first one "href='#Blaze Tests'" should be removed or changed to a different attribute like "title" or "aria-label". HTML elements should only have one href attribute.