Skip to content

Commit 9cbf573

Browse files
committed
Update quarterly news and Tech Women Rising image with new date info
1 parent 869b077 commit 9cbf573

File tree

3 files changed

+45
-50
lines changed

3 files changed

+45
-50
lines changed
Loading

app/views/static_pages/front_page.html.erb

+7-10
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,11 @@
4141

4242
<section class="section site-section">
4343
<h2>What's New?</h2>
44-
<p>Starting off 2019:</p>
44+
<p>Summer 2019:</p>
4545
<ul class="green-links">
46-
<li>Happy New Year 2019 everyone!!</li>
47-
<li>Join our first events in <a href="https://www.meetup.com/shescoding-amsterdam/" target="_blank">Amsterdam</a>! We are excited to get started in Europe!</li>
46+
<li>We have moved our annual <a href="http://techwomenrising.org" target="_blank">Tech Women Rising conference</a> to later in the year, allowing us a bit more time to create the best possible event for you!</li>
4847
<li>We are merging our Seattle and Seattle Eastside chapters into one. Visit the <a href="https://www.meetup.com/shescoding-seattle/" target="_blank">Seattle</a> group to find meetups in Seattle, Redmond and Bellevue.</li>
49-
<li>We will be launching our next Seattle two-month-long Code-a-thon soon - stay tuned!</li>
50-
<li>We have brought in new energy from the holiday period to continue planning our June Seattle <a href="http://techwomenrising.org" target="_blank">Tech Women Rising conference</a>!</li>
51-
<li>We added <a href="#testimonials"> testimonials</a> to the site - we love sharing the love we get from our members! </li>
48+
<li>We will be launching our first Amsterdam & next Seattle two-month-long Code-a-thon soon - stay tuned!</li>
5249
<li>Developing more new features for this website - keep a lookout for changes such as an events page, new resources, and others.</li>
5350
</ul>
5451
</section>
@@ -57,7 +54,7 @@
5754
<div class="col-md-8 col-md-pull-4">
5855
<section class="section site-section">
5956
<div class="row col">
60-
<%= link_to image_tag("static_pages/front_page_conf_banner.jpg"), "http://techwomenrising.org/", target: "_blank" %>
57+
<%= link_to image_tag("static_pages/front_page_conf_banner_2.png"), "http://techwomenrising.org/", target: "_blank" %>
6158
</div>
6259
</section>
6360

@@ -77,13 +74,13 @@
7774
<a href="https://www.meetup.com/shescoding-seattle/" target="_blank">Seattle Meetup</a>
7875
</li>
7976
<li>
80-
<a href="https://www.meetup.com/shescoding-dallas/" target="_blank">Dallas Meetup</a>
77+
<a href="https://www.meetup.com/shescoding-amsterdam/" target="_blank">Amsterdam Meetup</a>
8178
</li>
8279
<li>
83-
<a href="https://www.meetup.com/shescoding-tacoma/" target="_blank">Tacoma Meetup</a>
80+
<a href="https://www.meetup.com/shescoding-dallas/" target="_blank">Dallas Meetup</a>
8481
</li>
8582
<li>
86-
<a href="https://www.meetup.com/shescoding-amsterdam/" target="_blank">Amsterdam Meetup</a>
83+
<a href="https://www.meetup.com/shescoding-tacoma/" target="_blank">Tacoma Meetup</a>
8784
</li>
8885
</ul>
8986
<div class="row text-center">

db/schema.rb

+38-40
Original file line numberDiff line numberDiff line change
@@ -15,72 +15,72 @@
1515
# These are extensions that must be enabled in order to support this database
1616
enable_extension "plpgsql"
1717

18-
create_table "categories", force: :cascade do |t|
19-
t.string "name"
18+
create_table "categories", id: :serial, force: :cascade do |t|
19+
t.string "name", limit: 255
2020
t.text "description"
21-
t.datetime "created_at", null: false
22-
t.datetime "updated_at", null: false
21+
t.datetime "created_at"
22+
t.datetime "updated_at"
2323
end
2424

2525
create_table "categories_resources", id: false, force: :cascade do |t|
26-
t.bigint "resource_id"
27-
t.bigint "category_id"
26+
t.integer "resource_id"
27+
t.integer "category_id"
2828
t.index ["category_id"], name: "index_categories_resources_on_category_id"
2929
t.index ["resource_id"], name: "index_categories_resources_on_resource_id"
3030
end
3131

32-
create_table "guides", force: :cascade do |t|
33-
t.string "title"
34-
t.string "alias"
35-
t.string "description"
32+
create_table "guides", id: :serial, force: :cascade do |t|
33+
t.string "title", limit: 255
34+
t.string "alias", limit: 255
35+
t.string "description", limit: 255
3636
t.integer "likes"
37-
t.datetime "created_at", null: false
38-
t.datetime "updated_at", null: false
37+
t.datetime "created_at"
38+
t.datetime "updated_at"
3939
end
4040

4141
create_table "guides_steps", id: false, force: :cascade do |t|
42-
t.bigint "guide_id"
43-
t.bigint "step_id"
42+
t.integer "guide_id"
43+
t.integer "step_id"
4444
t.index ["guide_id"], name: "index_guides_steps_on_guide_id"
4545
t.index ["step_id"], name: "index_guides_steps_on_step_id"
4646
end
4747

48-
create_table "personas", force: :cascade do |t|
49-
t.string "name"
50-
t.string "color"
48+
create_table "personas", id: :serial, force: :cascade do |t|
49+
t.string "name", limit: 255
50+
t.string "color", limit: 255
5151
t.text "description"
5252
t.json "questions"
53-
t.datetime "created_at", null: false
54-
t.datetime "updated_at", null: false
53+
t.datetime "created_at"
54+
t.datetime "updated_at"
5555
end
5656

57-
create_table "resources", force: :cascade do |t|
58-
t.string "title"
59-
t.string "url"
57+
create_table "resources", id: :serial, force: :cascade do |t|
58+
t.string "title", limit: 255
59+
t.string "url", limit: 255
6060
t.text "description"
61-
t.string "source"
61+
t.string "source", limit: 255
6262
t.datetime "date"
6363
t.boolean "public"
6464
t.integer "likes", default: 0
65-
t.datetime "created_at", null: false
66-
t.datetime "updated_at", null: false
65+
t.datetime "created_at"
66+
t.datetime "updated_at"
6767
end
6868

69-
create_table "steps", force: :cascade do |t|
70-
t.string "type"
69+
create_table "steps", id: :serial, force: :cascade do |t|
70+
t.string "type", limit: 255
7171
t.text "content"
72-
t.string "level"
72+
t.string "level", limit: 255
7373
t.integer "likes"
74-
t.datetime "created_at", null: false
75-
t.datetime "updated_at", null: false
74+
t.datetime "created_at"
75+
t.datetime "updated_at"
7676
end
7777

78-
create_table "taggings", force: :cascade do |t|
79-
t.bigint "tag_id"
80-
t.string "taggable_type"
81-
t.bigint "taggable_id"
82-
t.string "tagger_type"
83-
t.bigint "tagger_id"
78+
create_table "taggings", id: :serial, force: :cascade do |t|
79+
t.integer "tag_id"
80+
t.integer "taggable_id"
81+
t.string "taggable_type", limit: 255
82+
t.integer "tagger_id"
83+
t.string "tagger_type", limit: 255
8484
t.string "context", limit: 128
8585
t.datetime "created_at"
8686
t.index ["context"], name: "index_taggings_on_context"
@@ -89,15 +89,13 @@
8989
t.index ["taggable_id", "taggable_type", "context"], name: "index_taggings_on_taggable_id_and_taggable_type_and_context"
9090
t.index ["taggable_id", "taggable_type", "tagger_id", "context"], name: "taggings_idy"
9191
t.index ["taggable_id"], name: "index_taggings_on_taggable_id"
92-
t.index ["taggable_type", "taggable_id"], name: "index_taggings_on_taggable_type_and_taggable_id"
9392
t.index ["taggable_type"], name: "index_taggings_on_taggable_type"
9493
t.index ["tagger_id", "tagger_type"], name: "index_taggings_on_tagger_id_and_tagger_type"
9594
t.index ["tagger_id"], name: "index_taggings_on_tagger_id"
96-
t.index ["tagger_type", "tagger_id"], name: "index_taggings_on_tagger_type_and_tagger_id"
9795
end
9896

99-
create_table "tags", force: :cascade do |t|
100-
t.string "name"
97+
create_table "tags", id: :serial, force: :cascade do |t|
98+
t.string "name", limit: 255
10199
t.integer "taggings_count", default: 0
102100
t.index ["name"], name: "index_tags_on_name", unique: true
103101
end

0 commit comments

Comments
 (0)