Projet

Général

Profil

Paste
Télécharger (6,77 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / ckeditor-4.9.2-full / samples / index.html @ b986a83e

1 0aee3c58 Assos Assos
<!DOCTYPE html>
2
<!--
3 b986a83e Florent Torregrosa
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
4
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
5 0aee3c58 Assos Assos
-->
6
<html>
7
<head>
8
        <meta charset="utf-8">
9
        <title>CKEditor Sample</title>
10
        <script src="../ckeditor.js"></script>
11
        <script src="js/sample.js"></script>
12
        <link rel="stylesheet" href="css/samples.css">
13
        <link rel="stylesheet" href="toolbarconfigurator/lib/codemirror/neo.css">
14
</head>
15
<body id="main">
16
17
<nav class="navigation-a">
18
        <div class="grid-container">
19
                <ul class="navigation-a-left grid-width-70">
20 b986a83e Florent Torregrosa
                        <li><a href="https://ckeditor.com/ckeditor-4/">Project Homepage</a></li>
21
                        <li><a href="https://github.com/ckeditor/ckeditor-dev/issues">I found a bug</a></li>
22 0aee3c58 Assos Assos
                        <li><a href="http://github.com/ckeditor/ckeditor-dev" class="icon-pos-right icon-navigation-a-github">Fork CKEditor on GitHub</a></li>
23
                </ul>
24
                <ul class="navigation-a-right grid-width-30">
25 b986a83e Florent Torregrosa
                        <li><a href="https://ckeditor.com/blog/">CKEditor Blog</a></li>
26 0aee3c58 Assos Assos
                </ul>
27
        </div>
28
</nav>
29
30
<header class="header-a">
31
        <div class="grid-container">
32
                <h1 class="header-a-logo grid-width-30">
33 b986a83e Florent Torregrosa
                        <a href="index.html"><img src="img/logo.svg" onerror="this.src='img/logo.png'; this.onerror=null;" alt="CKEditor Sample"></a>
34 0aee3c58 Assos Assos
                </h1>
35
36
                <nav class="navigation-b grid-width-70">
37
                        <ul>
38
                                <li><a href="index.html" class="button-a button-a-background">Start</a></li>
39
                                <li><a href="toolbarconfigurator/index.html" class="button-a">Toolbar configurator <span class="balloon-a balloon-a-nw">Edit your toolbar now!</span></a></li>
40
                        </ul>
41
                </nav>
42
        </div>
43
</header>
44
45
<main>
46
        <div class="adjoined-top">
47
                <div class="grid-container">
48
                        <div class="content grid-width-100">
49
                                <h1>Congratulations!</h1>
50
                                <p>
51
                                        If you can see CKEditor below, it means that the installation succeeded.
52
                                        You can now try out your new editor version, see its features, and when you are ready to move on, check some of the <a href="#sample-customize">most useful resources</a> recommended below.
53
                                </p>
54
                        </div>
55
                </div>
56
        </div>
57
        <div class="adjoined-bottom">
58
                <div class="grid-container">
59
                        <div class="grid-width-100">
60
                                <div id="editor">
61
                                        <h1>Hello world!</h1>
62 b986a83e Florent Torregrosa
                                        <p>I'm an instance of <a href="https://ckeditor.com">CKEditor</a>.</p>
63 0aee3c58 Assos Assos
                                </div>
64
                        </div>
65
                </div>
66
        </div>
67
68
        <div class="grid-container">
69
                <div class="content grid-width-100">
70
                        <section id="sample-customize">
71
                                <h2>Customize Your Editor</h2>
72 b986a83e Florent Torregrosa
                                <p>Modular build and <a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_configuration">numerous configuration options</a> give you nearly endless possibilities to customize CKEditor. Replace the content of your <code><a href="../config.js">config.js</a></code> file with the following code and refresh this page (<strong>remember to clear the browser cache</strong>)!</p>
73 0aee3c58 Assos Assos
                <pre class="cm-s-neo CodeMirror"><code><span style="padding-right: 0.1px;"><span class="cm-variable">CKEDITOR</span>.<span class="cm-property">editorConfig</span> <span class="cm-operator">=</span> <span class="cm-keyword">function</span>( <span class="cm-def">config</span> ) {</span>
74
<span style="padding-right: 0.1px;"><span class="cm-tab">        </span><span class="cm-variable-2">config</span>.<span class="cm-property">language</span> <span class="cm-operator">=</span> <span class="cm-string">'es'</span>;</span>
75
<span style="padding-right: 0.1px;"><span class="cm-tab">        </span><span class="cm-variable-2">config</span>.<span class="cm-property">uiColor</span> <span class="cm-operator">=</span> <span class="cm-string">'#F7B42C'</span>;</span>
76
<span style="padding-right: 0.1px;"><span class="cm-tab">        </span><span class="cm-variable-2">config</span>.<span class="cm-property">height</span> <span class="cm-operator">=</span> <span class="cm-number">300</span>;</span>
77
<span style="padding-right: 0.1px;"><span class="cm-tab">        </span><span class="cm-variable-2">config</span>.<span class="cm-property">toolbarCanCollapse</span> <span class="cm-operator">=</span> <span class="cm-atom">true</span>;</span>
78
<span style="padding-right: 0.1px;">};</span></code></pre>
79
                        </section>
80
81
                        <section>
82
                                <h2>Toolbar Configuration</h2>
83
                                <p>If you want to reorder toolbar buttons or remove some of them, check <a href="toolbarconfigurator/index.html">this handy tool</a>!</p>
84
                        </section>
85
86
                        <section>
87
                                <h2>More Samples!</h2>
88 b986a83e Florent Torregrosa
                                <p>Visit the <a href="https://sdk.ckeditor.com">CKEditor SDK</a> for a huge collection of samples showcasing editor features, with source code readily available to copy and use in your own implementation.</p>
89 0aee3c58 Assos Assos
                        </section>
90
91
                        <section>
92
                                <h2>Developer's Guide</h2>
93
                                <p>The most important resource for all developers working with CKEditor, integrating it with their websites and applications, and customizing to their needs. You can start from here:</p>
94
                                <ul>
95 b986a83e Florent Torregrosa
                                        <li><a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_installation">Getting Started</a> &ndash; Explains most crucial editor concepts and practices as well as the installation process and integration with your website.</li>
96
                                        <li><a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_advanced_installation">Advanced Installation Concepts</a> &ndash; Describes how to upgrade, install additional components (plugins, skins), or create a custom build.</li>
97 0aee3c58 Assos Assos
                                </ul>
98
                                        <p>When you have the basics sorted out, feel free to browse some more advanced sections like:</p>
99
                                <ul>
100 b986a83e Florent Torregrosa
                                        <li><a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_features">Functionality Overview</a> &ndash; Descriptions and samples of various editor features.</li>
101
                                        <li><a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/plugin_sdk_intro">Plugin SDK</a>, <a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/widget_sdk_intro">Widget SDK</a>, and <a href="https://docs.ckeditor.com/ckeditor4/docs/#!/guide/skin_sdk_intro">Skin SDK</a> &ndash; Useful when you want to create your own editor components.</li>
102 0aee3c58 Assos Assos
                                </ul>
103
                        </section>
104
105
                        <section>
106
                                <h2>CKEditor JavaScript API</h2>
107 b986a83e Florent Torregrosa
                                <p>CKEditor boasts a rich <a href="https://docs.ckeditor.com/ckeditor4/docs/#!/api">JavaScript API</a> that you can use to adjust the editor to your needs and integrate it with your website or application.</p>
108 0aee3c58 Assos Assos
                        </section>
109
                </div>
110
        </div>
111
</main>
112
113
<footer class="footer-a grid-container">
114
        <div class="grid-container">
115
                <p class="grid-width-100">
116 b986a83e Florent Torregrosa
                        CKEditor &ndash; The text editor for the Internet &ndash; <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
117 0aee3c58 Assos Assos
                </p>
118
                <p class="grid-width-100" id="copy">
119 b986a83e Florent Torregrosa
                        Copyright &copy; 2003-2018, <a class="samples" href="https://cksource.com/">CKSource</a> &ndash; Frederico Knabben. All rights reserved.
120 0aee3c58 Assos Assos
                </p>
121
        </div>
122
</footer>
123
<script>
124
        initSample();
125
</script>
126
127
</body>
128
</html>