-
Notifications
You must be signed in to change notification settings - Fork 205
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
Update default bootstrap version to 4 (latest cdn) #746
Merged
Merged
Changes from 4 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
c90eeac
Update bootstrap 3 to 4
ChangJoo-Park c9071e8
Update bootstrap 3 to 4 for ecr
ChangJoo-Park 9cc98cd
Update for bootstrap 4, add row class div
ChangJoo-Park f13dd97
Add col-sm for bootstrap 4 row
ChangJoo-Park 45aeb1e
#746 fix indentations
ChangJoo-Park 06e7ff1
#746 Remove col-md-6 from index.slang.ecr
ChangJoo-Park 0e78956
#746 change jquery-slim to jquery
ChangJoo-Park 95457c5
#746 migrate pull-right to ml-auto for auth links
ChangJoo-Park 3757408
#746 btn-xs to btn-sm. btn-xs is removed
ChangJoo-Park e98e61f
#746 btn-default has removed. change to btn-light
ChangJoo-Park 156ea70
#746 update checkbox for bootstrap 4
ChangJoo-Park 4a2a5c3
#746 vertical-align: middle; for bootstrap 4 tables
ChangJoo-Park 600a273
#746 update alert classs for bootstrap 4
ChangJoo-Park a426e1b
#746 remove ml-auto, need to fix auth links are on the right side of …
ChangJoo-Park 0feda91
#746 using only class and id for div
ChangJoo-Park 06acf93
#746 fix checkbox template
ChangJoo-Park 0d2903c
#746 remove checkbox class for testing
ChangJoo-Park c8d49a6
#746 FOR TEST update checkbox class
ChangJoo-Park ca90790
#746 Using only class name with div
ChangJoo-Park 634b3ed
#746 pulling auth navigation item on the right side of navigation bar
ChangJoo-Park ad5b10b
Merge branch 'master' into bootstrap-4
robacarp e9dd38e
#746 replace indentation tab to spaces
ChangJoo-Park 748b1b0
Merge branch 'master' into bootstrap-4
faustinoaq 62a489e
Merge branch 'master' into bootstrap-4
ChangJoo-Park 962c176
Merge branch 'master' into bootstrap-4
faustinoaq 67438aa
Merge branch 'master' into bootstrap-4
faustinoaq 8ca4070
Merge branch 'master' into bootstrap-4
robacarp c1bf89f
Merge branch 'master' into bootstrap-4
faustinoaq 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 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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<div id="logo" class="col-sm-6"></div> | ||
<div class="col-sm-6"> | ||
<h2><%= "<" %>%= t "welcome_to_amber" %></h2> | ||
<p>Thank you for trying out the Amber Framework. We are working hard to provide a super fast and reliable framework that provides all the productivity tools you are used to without sacrificing the speed.</p> | ||
<div class="list-group"> | ||
<a class="list-group-item list-group-item-action" target="_blank" href="https://docs.amberframework.org">Getting Started with Amber Framework</a> | ||
<a class="list-group-item list-group-item-action" target="_blank" href="https://github.com/veelenga/awesome-crystal">List of Awesome Crystal projects and shards</a> | ||
<a class="list-group-item list-group-item-action" target="_blank" href="https://crystalshards.xyz">What's hot in Crystal right now</a> | ||
<div class="row"> | ||
<div id="logo" class="col-sm-6"></div> | ||
<div class="col-sm-6"> | ||
<h2><%= "<" %>%= t "welcome_to_amber" %></h2> | ||
<p>Thank you for trying out the Amber Framework. We are working hard to provide a super fast and reliable framework that provides all the productivity tools you are used to without sacrificing the speed.</p> | ||
<div class="list-group"> | ||
<a class="list-group-item list-group-item-action" target="_blank" href="https://docs.amberframework.org">Getting Started with Amber Framework</a> | ||
<a class="list-group-item list-group-item-action" target="_blank" href="https://github.com/veelenga/awesome-crystal">List of Awesome Crystal projects and shards</a> | ||
<a class="list-group-item list-group-item-action" target="_blank" href="https://crystalshards.xyz">What's hot in Crystal right now</a> | ||
</div> | ||
</div> | ||
</div> |
This file contains 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
div#logo.col-sm-6 | ||
div.col-sm-6 | ||
h2 = t "welcome_to_amber" | ||
p Thank you for trying out the Amber Framework. We are working hard to provide a super fast and reliable framework that provides all the productivity tools you are used to without sacrificing the speed. | ||
div.list-group | ||
a.list-group-item.list-group-item-action target="_blank" href="https://docs.amberframework.org" Getting Started with Amber Framework | ||
a.list-group-item.list-group-item-action target="_blank" href="https://github.com/veelenga/awesome-crystal" List of Awesome Crystal projects and shards | ||
a.list-group-item.list-group-item-action target="_blank" href="https://crystalshards.xyz" What's hot in Crystal right now | ||
div.row | ||
ChangJoo-Park marked this conversation as resolved.
Show resolved
Hide resolved
|
||
div#logo.col-sm-6 | ||
ChangJoo-Park marked this conversation as resolved.
Show resolved
Hide resolved
|
||
div.col-sm-6 | ||
h2 = t "welcome_to_amber" | ||
p Thank you for trying out the Amber Framework. We are working hard to provide a super fast and reliable framework that provides all the productivity tools you are used to without sacrificing the speed. | ||
div.list-group | ||
a.list-group-item.list-group-item-action target="_blank" href="https://docs.amberframework.org" Getting Started with Amber Framework | ||
a.list-group-item.list-group-item-action target="_blank" href="https://github.com/veelenga/awesome-crystal" List of Awesome Crystal projects and shards | ||
a.list-group-item.list-group-item-action target="_blank" href="https://crystalshards.xyz" What's hot in Crystal right now |
This file contains 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 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.
:ditto:
about thecol-sm-6
classThere 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.
I'll do fix indents