The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
39 views

Why is s3 giving me a download instead of displaying my static website?

I'm trying to setup a static page on s3 with these instructions. When I access the "Endpoint", my browser tries to download the file instead of displaying the page. Here's the relevant settings: ...
0
votes
1answer
214 views

Windows Azure Static content website / Azure Blob storage - outbound Data transfers Price comparison

I have some scripts and images(total size is 1MB) in the web role. I am planning to move these to some blob storage(CDN/Https/Query string) or static website. The price for outbound data transfers ...
1
vote
1answer
154 views

Using Heroku for static site: Assets won't show

I've just loaded up a static app to Heroku using this tutorial and everything works quite well, except my images aren't showing up. When the same site is hosted on my own server as a plain static site ...
0
votes
3answers
119 views

How does getBlock('meta') work in DocPad?

I'm moving a website from a different site generator to DocPad and am trying to understand the getBlock('meta') feature. Figuring out getBlock('scripts') and getBlock('styles') was pretty easy since I ...
0
votes
1answer
92 views

Pretty URL via separate folder and index.html file inside or rule in .htaccess

I have static site (html + css) generated by nanoc. It works under Apache. I want use pretty url instead of .html suffix at the end. Like this: http://domain.ru http://domain.ru/page/page1/ ...
6
votes
6answers
398 views

Start an apache server in any directory from command line

I want to be able to start an apache server from the command line, typing something like apache site-folder or apache . --port=2000 This should read and use .htaccess files. I know about python -m ...
2
votes
2answers
122 views

Can anyone point me to a modular static HTML authoring/preprocessing framework, a la SASS? Or more accurately, HAML with includes?

I find myself doing a lot of work here and there (both for myself and on contract) to develop small, static websites where the use of dynamic tools like PHP frameworks or Rails would be totally ...
2
votes
1answer
277 views

SIMPLEST way to set up password protection for a static site?

I have a static site. I would like the simplest approach to password protecting a directory, with a basic admin UI for adding/removing users. I will have so few users that I don't care about ...
0
votes
1answer
237 views

Jekyll not generating files from deeply nested folder

I am trying to generate a site that contains javadoc. The structure looks like this: | |--com | |--myproduct | |--mypackage | |--notgenerated.html |--index.html In the ...
1
vote
2answers
213 views

Static Search Results using Tapir

Very much new to web development and Jekyll, and trying to implement TapirGo into my website to allow for static search. It appears as though their Jquery plugin is active on my site (when manually ...
2
votes
1answer
906 views

Unable to generate anything with Jekyll

When I run Jekyll it does not generate anything. The output I see: Configuration from /home/mbsheikh/techtraits/techtraits-blog/_config.yml Auto-regenerating enabled: ...
0
votes
4answers
237 views

Dump my MVC site to static files

I want to build a simple site with MVC but then render the "pages" and corresponding "assets" (js, css, images, etc) to what one might call a "static site". In other words, I don't want to deploy to ...
0
votes
2answers
369 views

Alternative to Amazon S3 with GZIP compression

I'm looking for an alternative to Amazon S3 for hosting static sites, but that allows GZIP compression depending on the Accept-Encoding header. In other words, I'm looking for something that will ...
0
votes
2answers
196 views

load any static site in liferay portal

I am new to Liferay, checking out what all kind of features it provides. Can we just load any static content website, just by passing its URL to a liferay portal. It will be something like if portal ...
1
vote
1answer
492 views

Middleman Dynamic Pages Issue

So I have a database called development.sqlite3 and it is in the same directory as my config.rb. When I go into IRB and type in the following: require 'data_mapper' DataMapper.setup :default, ...
5
votes
5answers
3k views

Recommendations of static site generator which accepts Markdown documents?

I'm looking for static site generator which accepts Markdown documents as input source code. I used Markdoc, but it looks abandoned. And it doesn't copy static file in source document folder. So I'm ...
2
votes
5answers
257 views

WordPress vs. Static files for a consulting site?

I'm putting together a consulting-type site (for myself) and I'm not sure whether I should use WordPress or just write all the pages out myself. There are only about 6 pages: Home Static Text 1 ...
0
votes
1answer
337 views

Hyde LessCSS plugin doesn't convert less files to css

I've been trying to get a hyde site going using the latest version available (0.8.4). I used the built in command to create a site hyde -s /path/to/dir create, and all worked fine. I then followed ...
13
votes
1answer
1k views

Jekyll Permalinks

What I'm trying to do is get all my posts to have the following format: domain.com/blog/title. However, in my _posts folder I have a file named 2010-07-11-hello.markdown and it contains the ...
0
votes
1answer
495 views

Can you attach a CMS to an existing static web site created in Dreamweaver?

I am not a programmer, but a designer. I created a static web site in Dreamweaver (CS4) and my client would like to be able to update a news page on his own. I have looked in to several CMS options ...
0
votes
4answers
144 views

Making a static ASP.NET site which has 100+ pages

I am converting an old html based website to ASP.NET, so that we can include more features like AJAX, Databases later on to the site. Currently my task is to create a new .aspx page for each older ...