mirror of
https://github.com/jessebot/tiny_personal_website.git
synced 2025-10-01 01:48:43 +00:00
fixing data presentation, adding cute logo, posting data from db now
This commit is contained in:
parent
721069d53a
commit
527d918518
2 changed files with 14 additions and 15 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -14,3 +14,4 @@ robots.txt
|
|||
bands.db
|
||||
images/favicon.ico
|
||||
images/jesserecent.jpg
|
||||
image_search/**
|
||||
|
|
|
@ -1,19 +1,6 @@
|
|||
% include('header_band.tpl')
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<!-- About Section -->
|
||||
<div class="col-xl-11 col-lg-11 col-md-11 col-sm-11 col-xs-12">
|
||||
<div class="dash-unit bhoechie-tab-container">
|
||||
<dtitle>
|
||||
<span aria-hidden="true" class="li_star fs1"></span>
|
||||
About
|
||||
</dtitle>
|
||||
<hr>
|
||||
<div class="aboutText">
|
||||
This website is dedicated to the name of your next band. Eventually, you'll be able to submit a band name, and it'll generate some cool art for you, but right now, it's under construction.
|
||||
</div>
|
||||
</div><!-- /.dash-unit -->
|
||||
</div><!-- /.col -->
|
||||
|
||||
<!-- Input section -->
|
||||
<div class="col-xl-11 col-lg-11 col-md-11 col-sm-11 col-xs-12">
|
||||
|
@ -26,13 +13,19 @@
|
|||
<center>
|
||||
<div class="col-xl-11 col-lg-11 col-md-11 col-sm-11 col-xs-12">
|
||||
<form action="/next-band" method="post">
|
||||
<center>
|
||||
<center>
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-md-5">
|
||||
<img class="img-responsive img-rounded center-block main-img" src="/images/noun_rock_monster.png" alt="Band Monster >:3" style="height:250px;" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Band Monster">
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
You'll be able to submit a band name, and it'll generate some cool art for you. Currently under construction.
|
||||
<label for="inputBand" class="sr-only">Input Band Name Here</label>
|
||||
<input type="text" class="form-control" id="inputBand" name="inputBand" placeholder="Band Name">
|
||||
<button type="submit" class="btn btn-primary btn-sm mb-2">Submit</button>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</center>
|
||||
</form>
|
||||
</div>
|
||||
</center>
|
||||
|
@ -47,6 +40,11 @@
|
|||
Previous Potential Band Names
|
||||
</dtitle>
|
||||
<hr>
|
||||
<div class="col-xl-11 col-lg-11 col-md-11 col-sm-11 col-xs-12">
|
||||
% for band_set in bands:
|
||||
<li>{{band_set[0]}}</li><br />
|
||||
% end
|
||||
</div>
|
||||
|
||||
</div><!-- /.dash-unit -->
|
||||
</div><!-- /.col -->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue