I am trying to deploy a jekyll website, specifically, in the Jekyll Uno template. The local view is completely fine, however, when I tried to deploy it, it looked something like this. P.S. the github repo is this and the local view looks like this. Any ideas what might be causing this?
Netlify deployed site view different than local jekyll serve
282 Views Asked by srdg At
1
There are 1 best solutions below
Related Questions in JEKYLL
- Jekyll install on Windows error message
- Jekyll: Using liquid tags in .md files
- why Special characters apostrophe and others shows like this ’, in HTMl file
- —- " added in HTML when converting MarkDown file to HTML using Jekyll tool
- Check if cookie exists using Jekyll Liquid
- Show only headers in Octopress RSS
- Grouping MarkDown elements in to DIV element or Custom html tag
- Jekyll JSON incorrect character encoding
- Creating a gruntfile to compile Jekyll and push a subfolder to Github
- github page blog from jekyll needs force reload to show changes with posts
- sorting of collection does not work
- gulp deploy rsync error // missing module lodash
- Jekyll: Liquid Tags used in Sub-directories
- Setting up Polymer with Jekyll?
- Make array elements lowercase with Liquid filters for sorting
Related Questions in LIQUID
- Jekyll: Using liquid tags in .md files
- Check if cookie exists using Jekyll Liquid
- How do you get the current time from bigcartel's server?
- If Else Statements, Javascript Toggle, Liquid / Ruby Language
- If, elsif, else: Limitations? Liquid
- sorting of collection does not work
- Shopify vendor if statement
- Jekyll: Liquid Tags used in Sub-directories
- Ruby on Rails liquid theme detect current page and either display banner or not
- Make array elements lowercase with Liquid filters for sorting
- Jekyll - How can I make avoid a paragraph to be added on a YAML frontmatter markdownify item
- Jekyll: Liquid Capture and Markdownify Tag Issues
- Does Liquid have a "does not contain" or "not in array" operator?
- Jekyll Deployment on Github Pages doesn't format correctly (No styling)
- Jekyll and Liquid for-loop
Related Questions in NETLIFY
- Blogdown: Deploy with Netlify fails with standard theme
- Blogdown site with Shiny App - Two domains needed?
- Are JAMstack conventions compatible with RESTful API design?
- Netlify forms not working with my GatsbyJS website
- DataTables not showing after Deployment [Netlify]
- Netlify Lambda doesn't include supporting files for Function
- FetchError: request to https://db.fauna.com/ failed, reason: write EPIPE
- How to know if the deployment on Netlify is done via API?
- Hugo site doesn't deploy to custom domain
- Gatsby Plugin Netlify CMS does not work with TypeScript?
- Local Netlify function server gives strange response instead of FaunaDB data
- Hosting with on netlify and using cpanel as a custom mail server
- Differences between Strapi and Netlify cms
- How to create an 'onClick' event for form submit button which both POSTS data to Netlify and redirects to Stripe Checkout?
- Cant deploy with Netlify and Stapi and Graphql
Related Questions in JEKYLL-THEME
- Github Jekyll page behaves not properly
- Why does my Jekyll page display raw front matter?
- Change H1 color on Jekyll, Just the Docs, Github Pages
- Adding a custom syntax-highlighting theme in jekyll and rouge
- How do I set a checkmark in markup?
- Adding short comments on Jekyll frontmatter date output
- When I try to sort post there an Expected end_of_string but found pipe error
- github pages website changing based on Windows theme
- How do I change the fonts used in a github pages theme?
- gem install jekyll: make failed, exit code 2 on macos
- How to host jekyll on a local network, so multiple people can access it?
- Netlify deployed site view different than local jekyll serve
- How to prevent my github page from making post title 'title-cased'
- jekyll-theme-primer bootsrap.min cannot be found
- Getting error while running "bundle exec jekyll serve"
Related Questions in NETLIFY-CMS
- Gatsby Plugin Netlify CMS does not work with TypeScript?
- How to set media_folder and public_folder in Netlify CMS when not using static site generator?
- Embedding a youtube video in markdown field in Netlify CMS
- Netlify-cms existing collection items are not displayed even if github request returns item
- Gatsby + Netlify CMS - error Your site's "gatsby-node.js" must set the page path when creating a page
- How to add 'slug' tag automatically in markdown files using NetlifyCMS and Gatsby?
- Netlify Deploy: 12:43:01 AM: Build failed due to a user error: Build script returned non-zero exit code: 2
- Multiple Relation Item in Netlify CMS
- Is it possible to add gatsby blog on a subdomain to pre existing gatsby site?
- Github - Take check status and update commit status
- How to edit Hugo content files directly in content root folder
- Netlify CMS not saving hidden fields
- Serve static image using netlify?
- `gatsby build` works locally, but not on netlify CMS
- is it correct to use "Netlify CMS" as cms for an e-commerce store?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You're moving from gh-pages to Netlify deploy. You then have to change some configuration.
In _config.yml, change
to
You can also stop publishing on gh-pages by going in repository settings and set Github Pages >> sources to
none. This can avoid you to have duplicate content and SEO problems.