Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit bfe5b51

Browse files
Viorel SoltanViorel Soltan
Viorel Soltan
authored and
Viorel Soltan
committed
start template-b4
1 parent d3b6472 commit bfe5b51

File tree

457 files changed

+108915
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

457 files changed

+108915
-1
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
descop.ini/
3+
node_modules/
4+
npm-debug.log/
5+

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# bootstrap-4-one-page
2-
Simple Start Template with Bootstrap 4. Gulp, Sass, Browser-sync
2+
Start Template with Bootstrap 4. Gulp, Sass, Browser-sync

bower.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "capm-landing-page-dev",
3+
"description": "",
4+
"main": "",
5+
"authors": [
6+
"Soltan Viorel"
7+
],
8+
"license": "MIT",
9+
"homepage": "",
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"test",
15+
"tests"
16+
]
17+
}
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "bootstrap",
3+
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4+
"keywords": [
5+
"css",
6+
"js",
7+
"sass",
8+
"mobile-first",
9+
"responsive",
10+
"front-end",
11+
"framework",
12+
"web"
13+
],
14+
"homepage": "https://getbootstrap.com",
15+
"license": "MIT",
16+
"moduleType": "globals",
17+
"main": [
18+
"scss/bootstrap.scss",
19+
"dist/js/bootstrap.js"
20+
],
21+
"ignore": [
22+
"/.*",
23+
"_config.yml",
24+
"CNAME",
25+
"composer.json",
26+
"CONTRIBUTING.md",
27+
"docs",
28+
"js/tests",
29+
"test-infra"
30+
],
31+
"dependencies": {
32+
"jquery": ">=1.9.1",
33+
"tether": "^1.4.0"
34+
},
35+
"version": "4.0.0-alpha.6",
36+
"_release": "4.0.0-alpha.6",
37+
"_resolution": {
38+
"type": "version",
39+
"tag": "v4.0.0-alpha.6",
40+
"commit": "65ffb1c3b6e94440812a2e228cb8e8be512652ec"
41+
},
42+
"_source": "https://github.com/twbs/bootstrap.git",
43+
"_target": "v4.0.0-alpha.6",
44+
"_originalSource": "bootstrap",
45+
"_direct": true
46+
}
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.
2+
3+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
4+
5+
Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.

bower_components/bootstrap/Gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
3+
group :development, :test do
4+
gem 'jekyll', '~> 3.3.1'
5+
gem 'jekyll-redirect-from', '~> 0.12.0'
6+
gem 'jekyll-sitemap', '~> 0.12.0'
7+
gem 'scss_lint', '~> 0.51.0'
8+
end
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.0)
5+
public_suffix (~> 2.0, >= 2.0.2)
6+
colorator (1.1.0)
7+
ffi (1.9.14)
8+
forwardable-extended (2.6.0)
9+
jekyll (3.3.1)
10+
addressable (~> 2.4)
11+
colorator (~> 1.0)
12+
jekyll-sass-converter (~> 1.0)
13+
jekyll-watch (~> 1.1)
14+
kramdown (~> 1.3)
15+
liquid (~> 3.0)
16+
mercenary (~> 0.3.3)
17+
pathutil (~> 0.9)
18+
rouge (~> 1.7)
19+
safe_yaml (~> 1.0)
20+
jekyll-redirect-from (0.12.0)
21+
jekyll (~> 3.3)
22+
jekyll-sass-converter (1.5.0)
23+
sass (~> 3.4)
24+
jekyll-sitemap (0.12.0)
25+
jekyll (~> 3.3)
26+
jekyll-watch (1.5.0)
27+
listen (~> 3.0, < 3.1)
28+
kramdown (1.13.1)
29+
liquid (3.0.6)
30+
listen (3.0.8)
31+
rb-fsevent (~> 0.9, >= 0.9.4)
32+
rb-inotify (~> 0.9, >= 0.9.7)
33+
mercenary (0.3.6)
34+
pathutil (0.14.0)
35+
forwardable-extended (~> 2.6)
36+
public_suffix (2.0.5)
37+
rake (12.0.0)
38+
rb-fsevent (0.9.8)
39+
rb-inotify (0.9.7)
40+
ffi (>= 0.5.0)
41+
rouge (1.11.1)
42+
safe_yaml (1.0.4)
43+
sass (3.4.23)
44+
scss_lint (0.51.0)
45+
rake (>= 0.9, < 13)
46+
sass (~> 3.4.20)
47+
48+
PLATFORMS
49+
ruby
50+
51+
DEPENDENCIES
52+
jekyll (~> 3.3.1)
53+
jekyll-redirect-from (~> 0.12.0)
54+
jekyll-sitemap (~> 0.12.0)
55+
scss_lint (~> 0.51.0)
56+
57+
BUNDLED WITH
58+
1.13.6

0 commit comments

Comments
 (0)