mirror of
https://github.com/bvanroll/yahoo-thing.git
synced 2025-08-28 11:32:49 +00:00
trying out new things
This commit is contained in:
0
static/main.css
Normal file
0
static/main.css
Normal file
@@ -1 +0,0 @@
|
||||
its extremely slow right now so euh... yea dont freak out
|
||||
|
@@ -1,18 +1,22 @@
|
||||
|
||||
|
||||
|
||||
<div class="panel-group" id="accordion">
|
||||
{{#each this.data}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title">
|
||||
<a data-toggle="collapse" data-parent="#accordion" href="#collapse1">{{this.title}}</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="collapse1" class="panel-collapse collapse in">
|
||||
<div class="panel-body"> <h3>description</h3> <p> {{this.description}}</p> <h3>category</h3> <p>{{this.category}}</p> </div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{{/each}}
|
||||
<div class="container wrapper">
|
||||
<div class="panel-group" id="accordion">
|
||||
{{#each this.data}}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title">{{this.title}}</h4>
|
||||
</div>
|
||||
<div class="panel-collapse collapse in">
|
||||
<div class="panel-body">
|
||||
<h3>description</h3>
|
||||
<p class="description">{{this.description}}</p>
|
||||
<h3>category</h3>
|
||||
<p class="category">{{this.category}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
@@ -5,6 +5,7 @@
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="static/main.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
Reference in New Issue
Block a user