-
Notifications
You must be signed in to change notification settings - Fork 7
Add comparison index page. #350
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
ericholscher
wants to merge
8
commits into
main
Choose a base branch
from
comparison-index
base: main
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
8 commits
Select commit
Hold shift + click to select a range
2c1e2be
Add comparison index page.
ericholscher ca409e2
Link headers
ericholscher a35f854
Apply suggestions from code review
ericholscher 01d1020
Address review feedback
ericholscher 207dadb
Break out card into a macro to not 3x all things
ericholscher 83293c9
Use explicit height
ericholscher 8816067
Small fix
ericholscher 0375378
Smae height
ericholscher 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 |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{# View this page at http://localhost:8080/comparisons/ #} | ||
|
||
<html> | ||
<head> | ||
<title>Read the Docs vs Other Documentation Platforms</title> | ||
<meta name="description" content="Compare Read the Docs features with other documentation platforms like GitHub Pages, GitBook, and Cloudflare Pages to find the best solution for your documentation needs." /> | ||
<meta name="template" content="page" /> | ||
<meta name="slug" content="comparisons" /> | ||
<meta name="status" content="hidden" /> | ||
</head> | ||
<body> | ||
|
||
{% import "partials/basic.html" as basic %} | ||
|
||
<section> | ||
{% call basic.header_lead( | ||
header="Compare Read the Docs with other platforms") | ||
%} | ||
<p> | ||
While there are many options for hosting documentation, | ||
Read the Docs is purpose-built for technical documentation with features that make both documentation authors and readers more productive. | ||
</p> | ||
<p> | ||
Compare Read the Docs with other popular documentation platforms to find the best solution for your needs. | ||
</p> | ||
{% endcall %} | ||
</section> | ||
|
||
<section> | ||
<div class="ui very padded container"> | ||
<div class="ui three stackable cards"> | ||
|
||
{{ basic.comparison_card( | ||
url="/comparisons/github-pages/", | ||
logo_url="/images/github-logo.svg", | ||
logo_alt="GitHub Pages logo", | ||
title="GitHub Pages", | ||
meta="Static site hosting", | ||
description="GitHub Pages is primarily for static hosting, but lacks documentation-specific features. See how Read the Docs compares." | ||
) }} | ||
|
||
{{ basic.comparison_card( | ||
url="/comparisons/gitbook/", | ||
logo_url="/images/gitbook-logo.svg", | ||
logo_alt="GitBook logo", | ||
title="GitBook", | ||
meta="Documentation platform", | ||
description="GitBook offers documentation hosting but with limited flexibility. Learn how Read the Docs gives you more control." | ||
) }} | ||
|
||
{{ basic.comparison_card( | ||
url="/comparisons/cloudflare-pages/", | ||
logo_url="/images/cloudflare-pages-logo.svg", | ||
logo_alt="Cloudflare Pages logo", | ||
title="Cloudflare Pages", | ||
meta="Web hosting platform", | ||
description="Cloudflare Pages is built for SPA hosting and not documentation. See why Read the Docs is better suited for your docs." | ||
) }} | ||
|
||
</div> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<div class="ui very padded container"> | ||
<div class="ui grid center aligned"> | ||
<div class="row"> | ||
<div class="column twelve wide computer sixteen wide tablet"> | ||
<div class="ui basic vertical huge segment"> | ||
<h2 class="ui center aligned header"> | ||
Ready to get started? <i class="fad fa-rocket icon"></i> | ||
</h2> | ||
|
||
<p> | ||
Read the Docs is the all-in-one solution that provides everything you need | ||
for hosting documentation, from authentication to versioning. | ||
Try it today and see the difference! | ||
</p> | ||
|
||
<p> | ||
<a class="ui large teal stackable button" | ||
data-analytics="signup-modal" | ||
onclick="jQuery('#signup-modal').modal('show');"> | ||
<i class="fad fa-rocket icon"></i> | ||
Get started for free | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
</body> | ||
</html> |
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
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
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.
You should instead edit the images to get similar proportions and alignment.
.ui.small.image
already controls the size and centering of the image, inline styles or a statically sized segment shouldn't be used to dictate this.