Skip to content

Commit 97f5b00

Browse files
authored
Merge pull request #9 from amilkh/master
Thank you!!
2 parents b3c0dec + a196b7f commit 97f5b00

14 files changed

Lines changed: 349 additions & 5 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 codeforfukui
3+
Copyright (c) 2016-2026 codeforfukui
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

about-en.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# About Code for FUKUI
2+
3+
[Code for FUKUI](index.html) is a civic tech organization that solves regional challenges through technology.
4+
5+
[Code for FUKUI](index.html) aims to spread an environment where people can create a better community by thinking for themselves, taking action, and connecting with others through civic tech activities that solve regional challenges using technology. We create new lifestyles and share our initiatives from [CyberValley](https://cybervalley.jp/).
6+
7+
Code for FUKUI members include engineers, designers, students, educators, government officials, and other diverse people who share the same vision.
8+
9+
## Mission (Philosophy & Purpose)
10+
11+
【Connecting Openly, We Update Society (Make It Better)】
12+
13+
We create a "place" where digital citizens connect openly to build the society they envision. This is a place that aims for "a society where we think together and create together."
14+
15+
Each person can create change in society by thinking for themselves, taking action, and connecting with others.
16+
Through connection, trust accumulates, enabling us not only to provide services that solve challenges but also to sustain the power to keep providing them.
17+
18+
## Vision (Goals & Future)
19+
20+
【A Society Where We Think Together and Create Together】
21+
22+
- Anyone can take on the role of "creator". Let's start by moving our hands.
23+
- Let's use our abilities to build a society where we can live more enjoyably.
24+
- Let's create new systems by thinking together with people who are struggling.
25+
- Let's connect beyond organizational and regional boundaries, exchange ideas, help each other, and take on challenges.
26+
27+
## Values (Principles & Code of Conduct)
28+
29+
【We Partner with Citizens and Local Government to Solve Regional Challenges】
30+
31+
- Code for FUKUI is an organization for digital citizens.
32+
- We utilize technology and data to solve real problems in our region.
33+
- We emphasize open collaboration and transparent decision-making.
34+
- We welcome diverse perspectives and backgrounds.
35+
- We are committed to continuous learning and improvement.
36+
37+
## How to Get Involved
38+
39+
We welcome anyone interested in civic tech and solving regional challenges. You can:
40+
41+
- Join our Slack community to discuss ideas and projects
42+
- Participate in our events and workshops
43+
- Contribute to one of our open-source projects
44+
- Share your skills and expertise with the community
45+
- Contact us through GitHub issues with questions or ideas
46+
47+
Together, we can create positive change in our communities.

about.html

Lines changed: 48 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,52 @@
11
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width">
22
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css">
3-
<script type="module" src="https://taisukef.github.io/marked_md/mark-down.js"></script>
3+
<script type="module" src="https://code4fukui.github.io/mark-down/mark-down.js"></script>
4+
<style>
5+
#language-selector {
6+
position: fixed;
7+
top: 10px;
8+
right: 10px;
9+
z-index: 1000;
10+
background: white;
11+
padding: 5px 10px;
12+
border-radius: 4px;
13+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
14+
}
15+
#language-selector select {
16+
padding: 5px;
17+
border: 1px solid #ccc;
18+
border-radius: 4px;
19+
font-size: 14px;
20+
cursor: pointer;
21+
}
22+
</style>
423
<title>Code for FUKUIとは</title>
5-
</head><body><mark-down src="about.md"></markdown>
24+
</head><body>
25+
<div id="language-selector">
26+
<select id="lang-select" onchange="changeLanguage(this.value)">
27+
<option value="ja">日本語</option>
28+
<option value="en">English</option>
29+
</select>
30+
</div>
31+
<mark-down id="content" src="about.md"></mark-down>
32+
<script>
33+
function initLanguage() {
34+
const saved = localStorage.getItem('preferredLanguage') || 'ja';
35+
document.getElementById('lang-select').value = saved;
36+
setLanguage(saved);
37+
}
38+
39+
function changeLanguage(lang) {
40+
localStorage.setItem('preferredLanguage', lang);
41+
setLanguage(lang);
42+
}
43+
44+
function setLanguage(lang) {
45+
const content = document.getElementById('content');
46+
content.src = lang === 'en' ? 'about-en.md' : 'about.md';
47+
document.documentElement.lang = lang;
48+
}
49+
50+
document.addEventListener('DOMContentLoaded', initLanguage);
51+
</script>
652
</body></html>

code4fukui_github.png

-832 KB
Loading

code4fukui_github_min.png

-384 KB
Loading

code4fukui_logo.png

-87.2 KB
Loading

code4fukui_logo_margin.png

-45.7 KB
Loading

code4fukui_logo_raptor.png

-80.4 KB
Loading

code4fukui_logo_square.png

-33.2 KB
Loading

code4fukui_logo_title.png

-63.1 KB
Loading

0 commit comments

Comments
 (0)