Skip to content

Commit 2e97f41

Browse files
author
MagdalenaJadach
authored
Initial html starter project (#171)
1 parent 61e9146 commit 2e97f41

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

Diff for: lib/tasks/project_components/html_starter/index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link href="styles.css" rel="stylesheet">
6+
</head>
7+
<body>
8+
<h1>Hello world</h1>>
9+
</body>
10+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
NAME: "Hello 🌍🌎🌏 me"
2+
IDENTIFIER: "html-starter"
3+
TYPE: "html"

Diff for: lib/tasks/project_components/html_starter/styles.css

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
h1 {
2+
background-color: green;
3+
color: pink;
4+
}

Diff for: lib/tasks/projects.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'yaml'
44
require 'project_importer'
55

6-
CODE_FORMATS = ['.py', '.csv', '.txt'].freeze
6+
CODE_FORMATS = ['.py', '.csv', '.txt', '.html', '.css'].freeze
77
IMAGE_FORMATS = ['.png', '.jpg', '.jpeg'].freeze
88

99
namespace :projects do

0 commit comments

Comments
 (0)