Skip to content

Commit f4f9d22

Browse files
Sebastian SulinskiSebastian Sulinski
authored andcommitted
Initial commit
0 parents  commit f4f9d22

File tree

6 files changed

+100
-0
lines changed

6 files changed

+100
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.idea/
2+
.DS_Store
3+
npm-debug.log
4+
/vendor
5+
/node_modules
6+
/assets
7+
mix-manifest.json

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Sebastian Sulinski <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

data.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"href": "https://twitter.com",
4+
"title": "Twitter updates",
5+
"body": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor."
6+
},
7+
{
8+
"href": "https://linkedin.com",
9+
"title": "LinkedIn updates",
10+
"body": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor."
11+
},
12+
{
13+
"href": "https://google.com",
14+
"title": "Google updates",
15+
"body": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor."
16+
}
17+
]

index.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
6+
<title>Horizontal Feed with VueJs</title>
7+
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
8+
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
9+
<link href="./dist/css/app.css" rel="stylesheet">
10+
</head>
11+
<body>
12+
<div id="app">
13+
14+
<div class="row">
15+
16+
<div class="horizontal-feed">
17+
<div class="header"><span>Header</span></div>
18+
<div class="body">
19+
<div>
20+
<p>
21+
<a href="#">Title</a> <span>Content</span>
22+
</p>
23+
</div>
24+
<div class="cover"></div>
25+
</div>
26+
<div class="buttons">
27+
<span class="previous"><i class="fa fa-angle-left"></i></span>
28+
<span class="play"><i class="fa fa-play"></i></span>
29+
<span class="next"><i class="fa fa-angle-right"></i></span>
30+
</div>
31+
</div>
32+
33+
</div>
34+
35+
</div>
36+
<script src="./dist/js/app.js"></script>
37+
</body>
38+
</html>

package.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"devDependencies": {
3+
"axios": "^0.15.3",
4+
"babel-polyfill": "^6.22.0",
5+
"laravel-mix": "^0.7.5",
6+
"vue": "^2.1.10"
7+
},
8+
"scripts": {
9+
"dev": "cross-env NODE_ENV=development webpack --progress --hide-modules",
10+
"watch": "cross-env NODE_ENV=development webpack --watch --progress --hide-modules",
11+
"hmr": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
12+
"production": "cross-env NODE_ENV=production webpack --progress --hide-modules"
13+
}
14+
}

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#Horizontal feed with VueJs
2+
3+
Exercise files for the [Horizontal feed with vuejs](https://ssdtutorials.com/courses/vue-horizontal-feed) course.

0 commit comments

Comments
 (0)