-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update npm dependency to latest stable version
- Loading branch information
Showing
3 changed files
with
63 additions
and
0 deletions.
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 |
---|---|---|
|
@@ -11,5 +11,8 @@ | |
"license": "ISC", | ||
"devDependencies": { | ||
"prettier": "3.3.3" | ||
}, | ||
"dependencies": { | ||
"bulma-timeline": "^3.0.5" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<script src="/node_modules/bulma-extensions/bulma-calendar/dist/bulma-calendar.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div class="timeline is-centered"> | ||
<header class="timeline-header"> | ||
<span class="tag is-medium is-primary">Start</span> | ||
</header> | ||
<div class="timeline-item is-primary"> | ||
<div class="timeline-marker is-primary"></div> | ||
<div class="timeline-content"> | ||
<p class="heading">January 2016</p> | ||
<p>Timeline content - Can include any HTML element</p> | ||
</div> | ||
</div> | ||
<div class="timeline-item is-warning"> | ||
<div class="timeline-marker is-warning is-image is-32x32"> | ||
<img src="https://bulma.io/images/placeholders/32x32.png"> | ||
</div> | ||
<div class="timeline-content"> | ||
<p class="heading">February 2016</p> | ||
<p>Timeline content - Can include any HTML element</p> | ||
</div> | ||
</div> | ||
<header class="timeline-header"> | ||
<span class="tag is-primary">2017</span> | ||
</header> | ||
<div class="timeline-item is-danger"> | ||
<div class="timeline-marker is-danger is-icon"> | ||
<i class="fa fa-flag"></i> | ||
</div> | ||
<div class="timeline-content"> | ||
<p class="heading">March 2017</p> | ||
<p>Timeline content - Can include any HTML element</p> | ||
</div> | ||
</div> | ||
<header class="timeline-header"> | ||
<span class="tag is-medium is-primary">End</span> | ||
</header> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |