Right now im starting with my own personal blog, im doing this with Ghost, im developing my own theme based on casper, the blog is also my personal site, so i want to have a static page were i can upload all the reveal.js presentations that i've done (myblog.com/talks), like a list of presentations, right now i have my page-talks.hbs on my theme folder, but i wanna know of how can i upload all the static content from reveal.js, is there any way for doing this? i've tried putting the html files directly inside the themes folder but i get 404 error when trying to access the url.
1
There are 1 best solutions below
Related Questions in WEB
- Settlement Amount of Razorpay Dashboard is not correct
- How can I implement synchronous registration on a website and a forum by linking their databases?
- NextJS 13+ how to use parallel + intercepting routes to create a modal on a page which also stores/syncs state with search params?
- logo image error nextjs notion starter kit with teamspace
- how do i create slider on Wix website builder?
- Why do I get 500 error on Azure after using ViewBag?
- After pg-related pop-up calls and processing, the web application JSESSION is broken
- How can i upload image on Laravel React App
- React Routing in web development using an index template
- Why is my time filter not updating within my Quasar template?
- Why do I have a 403 error when trying to save a website
- Hadoop MiniCluster Web UI
- How to debug flutter web app to check maximum memory consumption issue?
- How to send a HTTP Cookie using the Set-Cookie header over a HTTP connection?
- Is it posible to modify packets that creats by request python module?
Related Questions in STATIC
- Cannot make Django run the frontend from Vite's build ("was blocked because of a disallowed MIME type (“text/html”)")
- Django miss static files after packaging with pyinstaller
- Solved: Create standalone executable for MacOS with OpenCV and libmagic
- Can I have a static ISO8601DateFormatter with specific formatOptions in Swift?
- Is dll static var shared between threads that load the same dll?
- output: export to generate a static build in nextjs14 is not loading css styles
- why inner classes in java cant have static elements?
- Is there a way to use static member as an interface in dart?
- Static block initialization of two classes leads to a confusion
- How can I determine when is more convenient to use static methods instead of instance ones? Encapsulation is the preferable choice?
- Headless WP theme with NextJS
- why am i getting the error that string cannot be converted to int
- C# How do I Create and Reference Multiple Globally Accessible Objects?
- static export for nextjs project and deployment with plesk
- Query about initialization of objects created within a static method by the garbage collector
Related Questions in BLOGS
- Blogs Standard URL Filter /Tagged/Tag Not Working - Shopify
- Why has this VuePress Compilation failed?
- What is the best way to fix the 'AddThis' social links in Big Commerce
- How can I add audio and video with selectable tracks to a Jekyll personal blog?
- How do I disable/remove the date from the Docusaurus blog posts?
- How to solve this cors error i am using Appwrite as for backend when i am trying to signup or perfoming login then it is giving me error
- Unable to click on blog listings in mobile view/device
- corrupted size vs. prev_size Error: Command "npm run build" exited with SIGABRT`
- Customizing Divi Blog module for ACF
- I want to create a pagination in gatsby and strapi but im failing miserably
- How can I get rid of the effect on GitHub blog images?
- POST http://localhost:3000/uploads 404 (Not Found)
- Not installing next-contentlayer in nextjs 14.1.0 version
- Second MySQL Docker container not using different port
- Get specific category and all post within the category
Related Questions in GHOST
- Can configure Git to always merge changes to a file in one branch to different files in another?
- nginx subdomain configuration example.com/blog
- How run ghost on Google App Engine
- Using environment variables in Ghost v1 config
- Selenium Ghost browser unexpected exited status 0
- Add htaccess to a Ghost project
- Nested numbered lists in Ghost blog
- Ghost theme static webpage
- Ghost CMS Heroku new theme added by git not displaying
- Error running ghost on Windows 10
- Error when running ghost docker image second time
- Get internal tags in Ghost
- How add push notification service on ghost blog?
- Ghost CMS navigation goes to non-custom domain
- Adding Application Insights to Ghost
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 # Hahtags
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?
In ghost to make a static page, there are 2 important steps you should implement. First, you should create a static page on the admin panel (Click to "New Story"). After this, in the "Post Settings Menu" (by clicking on the gear icon in the top right corner) check the box to "Turn this into a static page". Hit 'Publish'.
Second, create a .hbs file manually in your theme folder with a prefix of "page-" and with the name (title) you choosed in the first step, like: page-your-choosed-name.hbs.
By now you should able to reach your static page, and you can easily fill in the hbs file with content.
Hope this helps!