Gabriel González Zabala
Joined 4/22/2020
Gabriel González Zabala said about 4 years ago on Using Bootstrap Themes :
Hi! Great tutorial, totally worth it!
I used the resume theme https://startbootstrap.com/themes/resume/
Everything went really good except from the js I think, the automatic scrolling between sections doesn't work. It just go like a normal link.
Here are the errors that I see in the terminal:

ActionController::RoutingError (No route matches [GET] "/vendor/bootstrap/js/bootstrap.bundle.min.js"):
ActionController::RoutingError (No route matches [GET] "/vendor/jquery/jquery.min.js"):
ActionController::RoutingError (No route matches [GET] "/js/resume.min.js"):
ActionController::RoutingError (No route matches [GET] "/vendor/jquery-easing/jquery.easing.min.js"):
ActionController::RoutingError (No route matches [GET] "/img/profile.jpg"):
ActionController::RoutingError (No route matches [GET] "/vendor/bootstrap/js/bootstrap.bundle.min.js"):
ActionController::RoutingError (No route matches [GET] "/vendor/jquery-easing/jquery.easing.min.js"):
ActionController::RoutingError (No route matches [GET] "/js/resume.min.js"):

Any help will be very much appreciated!

.



Gabriel González Zabala said about 4 years ago on Using Bootstrap Themes :
  Thanks for you answer. I thought the same but I followed the tutorial and make sure that there is no references in the application layout file.
Weird thing is that is working for the stylesheets but not the js...
This is my application layout:

<!DOCTYPE html>
<html>
  <head>
    <title>Blog</title>
    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>

    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>

    <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload', defer: true %>
    <%= stylesheet_pack_tag 'application', 'data-turbolinks-track': 'reload', defer: true %>

    <!-- Custom fonts for this template -->
    <link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet">

  </head>

  <body id="page-top">
    <%= render 'layouts/navigations/sidebar' %>

    <div class="container-fluid p-0">

      <section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="about" style="background-color: #100C08;">
        <%= yield %>
      </section>

      <hr class="m-0">

      <%= render 'layouts/navigations/experience' %>

      <hr class="m-0">

      <%= render 'layouts/navigations/education' %>

      <hr class="m-0">

      <%= render 'layouts/navigations/skills' %>

      <hr class="m-0">

      <%= render 'layouts/navigations/interests' %>

      <hr class="m-0">

     <%= render 'layouts/navigations/awards' %>

    </div>
  </body>
</html>