| 1 | <% content_for :meta_head do %> |
| 2 | <title><%= @meta_title %> | <%= @user.name %></title> |
| 3 | <meta name="description" content="<%= @meta_description %>"> |
| 4 | <% end %> |
| 5 | |
| 6 | <div class="row"> |
| 7 | <!-- BEGIN content --> |
| 8 | <div class="col-md-12"> |
| 9 | |
| 10 | <div class="page-header"> |
| 11 | <h1><%= t("my") %> / Bonzo 🥁</h1> |
| 12 | </div> |
| 13 | <%= render "shared/flash_message", object: flash %> |
| 14 | |
| 15 | </div> |
| 16 | <div class="col-md-2"> |
| 17 | <%= render "my/partial_menu" %> |
| 18 | </div> |
| 19 | <div class="col-md-10"> |
| 20 | |
| 21 | <div class="row"> |
| 22 | <!-- BEGIN content --> |
| 23 | <div class="col-md-12"> |
| 24 | <div class="lead page-info"> |
| 25 | <b><i>Bonzo</i></b> is your AI personal assistant that can generate a <b><i>drum backing track</i></b> from a song. |
| 26 | </div> |
| 27 | <h2>Files</h2> |
| 28 | <% if @audio_files.count == 0 %> |
| 29 | You don't have any files to generate the drum backing track from. |
| 30 | <% else %> |
| 31 | <table style="width: 100%"> |
| 32 | <% @audio_files.each_with_index do |audio_file, index| %> |
| 33 | <%= render "my/partial_bonzo_row", audio_file: audio_file %> |
| 34 | <% end %> |
| 35 | </table> |
| 36 | <% end %> |
| 37 | <div class="modul" style="margin-top: 20px; padding-right: 6px;"> |
| 38 | <%= render "my/partial_bonzo_version" %> |
| 39 | </div> |
| 40 | </div> |
| 41 | </div> |
| 42 | |
| 43 | </div> |
| 44 | <!-- END content --> |
| 45 | </div> |
| 46 | |
| 47 | <div class="row" style="margin-top: 20px;"> |
| 48 | <div class="col-md-12"> |
| 49 | |
| 50 | <ol class="breadcrumb"> |
| 51 | <li><%= link_to t("breadcrumb_home"), root_path %></li> |
| 52 | </ol> |
| 53 | |
| 54 | </div> |
| 55 | </div> |
| 56 |