Questions tagged [hyde]

Hyde is a static website generator written in python with the goal of removing the pain points involved in creating and maintaining static websites.

Hyde is a static website generator written in Python with the goal of removing the pain points involved in creating and maintaining static websites.

Feature Highlights

  • Support for powerful template languages like Jinja2 complemented with custom tags and filters.
  • Rich object model and overridable hierarchical metadata thats available for use in templates.
  • Configurable sorting, tagging and grouping support.
  • Extensible plugin architecture with text preprocessing and HTML postprocessing support for complex content transformations.
  • Instant preview using built-in webserver that regenerates content if needed.
24 questions
20
votes
1 answer

Display all jinja object attributes

Is there a way to display the name/content/functions of all attributes of a given object in a jinja template. This would make it easier to debug a template that is not acting as expected. I am building a website using the hyde framework and this…
scicalculator
  • 1,498
  • 3
  • 16
  • 33
11
votes
2 answers

How to generate new content with Hyde?

I'm starting to learn Hyde and I've cloned a few blogs written in Hyde from Github. I can successfully generate these sample blogs in my web browser and serve them locally; however, I can't seem to figure out how to actually generate new content.…
drbunsen
  • 10,139
  • 21
  • 66
  • 94
6
votes
1 answer

What makes static site generators like Jekyll and Hyde better than XML and XSLT?

The idea seems to be very similar by keeping actual content separate from the final output rendering so that changing the template or styling is trivial.
Treffynnon
  • 21,365
  • 6
  • 65
  • 98
4
votes
2 answers

using a static website generator for a blog on a dynamic website?

I'm looking into having a blog/content section on my dynamic website. Is it sensible to use a static website generator like Hyde to generate the "static content part" of the website? Advantages would be: easy/simple for a few other people to…
Tommy
  • 1,219
  • 11
  • 18
4
votes
1 answer

Blog on Google App Engine

Hi i'm trying to host my blog on Google App Engine (Google quality & free ...) i looked everywhere for a solution. I love jekyll project but since it's developed with ruby i can't host it on appengine. I found hyde project ( which kind of python…
Yasin Uslu
  • 546
  • 6
  • 17
3
votes
0 answers

Having trouble installing hyde with pip in a virtualenv in Windows

So this is what I get when I try to pip install hyde in a virtualenv in Windows. How come this is happening and how do I solve it? C:\Users\s3z\Desktop\My Dropbox\Art_website>Scripts\activate (Art_website) C:\Users\s3z\Desktop\My…
user883807
2
votes
1 answer

R blogdown: figures generated in .Rmd file don't show when blog is displayed on R-bloggers

We successfully and easily created a blog using blogdown for R. The blog looks great and works as expected. The figures, generated automatically upon the rmarkdown knitting, are displayed properly as shown here (see the second figure with the…
Dominique Makowski
  • 1,511
  • 1
  • 13
  • 30
2
votes
1 answer

How to install poole/hyde in Jekyll?

I am trying to build a blog using Jekyll ( http://jekyllbootstrap.com/usage/jekyll-quick-start.html) on github pages. After publishing the site, a found a theme Hyde, that uses Poole (https://github.com/poole/poole/#readme). I am finding it a bit…
user1502
  • 527
  • 1
  • 7
  • 21
1
vote
2 answers

Is Hyde (Python) a stand alone solution?

According to the Hyde website, Hyde is based on the Django template engine. I don't want to install Django and Hype. So, a yes/no question: Is it a stand alone solution?
GUI Junkie
  • 539
  • 1
  • 17
  • 31
1
vote
2 answers

Can I use something like Hyde from within Django?

I have a site with a few hundred pages where maybe 75% of pages are static content and the rest fit the typical "web application" model. My preference is Django, so I've mostly been looking at solutions based on that. The content is very bespoke --…
Adam
  • 938
  • 1
  • 8
  • 22
1
vote
0 answers

How to escape double brackets in Hyde markdown syntax

When using the Hyde static webpage generator I have Python code with double brackets {% syntax %} var[["some-string"]] = foo {% endsyntax %} This renders oddly because [["foo"]] is special Hyde markdown. Normal escaping (e.g. through the use of…
MRocklin
  • 55,641
  • 23
  • 163
  • 235
1
vote
0 answers

Setting Canonical links in hyde templates

I'm a bit confused as to how to set a canonical link inside hyde's base template. The jinja2 and hyde documentation isn't so clear as how to set the canonical from the base template (I'm not totally sure what the url parameter means in either) What…
ShanaC
  • 357
  • 1
  • 2
  • 6
1
vote
1 answer

TB fluid div alignment issue from hyde generated code

I have the following responsive blog archives layout, which is suffering from alignment issues but I'm not sure which element to target to remedy the issue. In the linked jsFiddle example, adjusting the width does produce a responsive layout, but…
ljs.dev
  • 4,449
  • 3
  • 47
  • 80
1
vote
1 answer

Error hyde with python-3.x

I followed (https://github.com/hyde/hyde) and installed all requirements.txt using the command "hyde-s folder_name create-l starter "error occurs: Traceback (most recent call last): File "C: \ Python33 \ Scripts \ hyde-script.py", line 9, in…
neiesc
  • 633
  • 1
  • 7
  • 16
1
vote
2 answers

Global include in restructured text

I'm using reStructuredText for my blog/website and I want to add a global include file. I have access to and am happy to change the settings file I'm using to generate the html output, I just can't figure out the syntax for either: adding a default…
Jeff Tratner
  • 16,270
  • 4
  • 47
  • 67
1
2